| Enum Constant and Description |
|---|
BLUE
Blue has been associated with the flagged item.
|
GREEN
Green has been associated with the flagged item.
|
NONE
No flag has been associated with the item.
|
ORANGE
Orange has been associated with the flagged item.
|
PURPLE
Purple has been associated with the flagged item.
|
RED
Red has been associated with the flagged item.
|
YELLOW
Yellow has been associated with the flagged item.
|
| 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