public enum ExcelColor extends Enum<ExcelColor>
| Enum Constant and Description |
|---|
BLACK
Preto
|
BLUE
Azul
|
BLUE_1
Azul escuro
|
BLUE_2
Azul escuro claro
|
BLUE_3
Azul medio
|
BLUE_4
Azul claro escuro
|
BLUE_5
Azul claro
|
BROWN
Marrom
|
GRAY_25
Cinza claro
|
GRAY_50
Cinza
|
GRAY_75
Cinza escuro
|
GREEN
Verde
|
GREEN_1
Verde escuro
|
GREEN_2
Verde escuro claro
|
GREEN_3
Verde medio
|
GREEN_4
Verde claro escuro
|
GREEN_5
Verde claro
|
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
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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
public static final ExcelColor GREEN_1
public static final ExcelColor GREEN_2
public static final ExcelColor GREEN_3
public static final ExcelColor GREEN_4
public static final ExcelColor GREEN_5
public static final ExcelColor BLUE_1
public static final ExcelColor BLUE_2
public static final ExcelColor BLUE_3
public static final ExcelColor BLUE_4
public static final ExcelColor BLUE_5
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 nameNullPointerException - if the argument is nullCopyright © 2019 Tecgraf/PUC-Rio. All rights reserved.