public static enum GUIConstants.Fill extends java.lang.Enum<GUIConstants.Fill>
| Enum Constant and Description |
|---|
GRADIENT
Downward gradient.
|
NONE
Transparent mode.
|
PLAIN
Opaque fill mode.
|
| Modifier and Type | Method and Description |
|---|---|
static GUIConstants.Fill |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GUIConstants.Fill[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GUIConstants.Fill PLAIN
public static final GUIConstants.Fill NONE
public static final GUIConstants.Fill GRADIENT
public static GUIConstants.Fill[] values()
for (GUIConstants.Fill c : GUIConstants.Fill.values()) System.out.println(c);
public static GUIConstants.Fill 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