| Enum Constant and Description |
|---|
BLUE
Blue color.
|
GREEN
Green color.
|
NONE
None.
|
ORANGE
Orange color.
|
PURPLE
Purple color.
|
RED
Red color.
|
YELLOW
Yellow color.
|
| Modifier and Type | Method and Description |
|---|---|
static FlagIcon |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FlagIcon[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlagIcon PURPLE
public static final FlagIcon ORANGE
public static final FlagIcon GREEN
public static final FlagIcon YELLOW
public static final FlagIcon BLUE
public static final FlagIcon RED
public static final FlagIcon NONE
public static FlagIcon[] values()
for (FlagIcon c : FlagIcon.values()) System.out.println(c);
public static FlagIcon valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null