public static enum ComponentState.ColorSchemeKind extends java.lang.Enum<ComponentState.ColorSchemeKind>
| Enum Constant and Description |
|---|
CURRENT
Current color scheme (e.g.
|
DISABLED
Disabled color scheme (usually
LightGrayColorScheme). |
REGULAR
Regular color scheme (usually
MetallicColorScheme). |
| Modifier and Type | Method and Description |
|---|---|
static ComponentState.ColorSchemeKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ComponentState.ColorSchemeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentState.ColorSchemeKind CURRENT
AquaColorScheme).public static final ComponentState.ColorSchemeKind REGULAR
MetallicColorScheme).public static final ComponentState.ColorSchemeKind DISABLED
LightGrayColorScheme).public static ComponentState.ColorSchemeKind[] values()
for (ComponentState.ColorSchemeKind c : ComponentState.ColorSchemeKind.values()) System.out.println(c);
public static ComponentState.ColorSchemeKind 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