|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ExcelColor>
tecgraf.javautils.excel.v1.ExcelColor
public enum ExcelColor
Classe que guarda todas as cores
| Enum Constant Summary | |
|---|---|
BLACK
Preto |
|
BLUE
Azul |
|
BROWN
Marrom |
|
GRAY_25
Cinza claro |
|
GRAY_50
Cinza |
|
GRAY_75
Cinza escuro |
|
GREEN
Verde |
|
LIGHT_BLUE
Azul claro |
|
LIGHT_GREEN
Verde claro |
|
LIGHT_ORANGE
Laranja claro |
|
LIGHT_PINK
Rosa claro |
|
LIGHT_RED
Vermelho claro |
|
LIGHT_YELLOW
Amarelo claro |
|
ORANGE
Laranja |
|
PINK
Rosa |
|
RED
Vermelho |
|
WHITE
Branco |
|
YELLOW
Amarelo |
|
| Method Summary | |
|---|---|
static ExcelColor |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ExcelColor[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ExcelColor BLACK
public static final ExcelColor LIGHT_BLUE
public static final ExcelColor BLUE
public static final ExcelColor LIGHT_GREEN
public static final ExcelColor GREEN
public static final ExcelColor BROWN
public static final ExcelColor LIGHT_RED
public static final ExcelColor RED
public static final ExcelColor LIGHT_YELLOW
public static final ExcelColor YELLOW
public static final ExcelColor GRAY_25
public static final ExcelColor GRAY_50
public static final ExcelColor GRAY_75
public static final ExcelColor LIGHT_ORANGE
public static final ExcelColor ORANGE
public static final ExcelColor LIGHT_PINK
public static final ExcelColor PINK
public static final ExcelColor WHITE
| Method Detail |
|---|
public static ExcelColor[] values()
for (ExcelColor c : ExcelColor.values()) System.out.println(c);
public static ExcelColor valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||