org.jvnet.substance
Enum ComponentState.ColorSchemeKind

java.lang.Object
  extended by java.lang.Enum<ComponentState.ColorSchemeKind>
      extended by org.jvnet.substance.ComponentState.ColorSchemeKind
All Implemented Interfaces:
Serializable, Comparable<ComponentState.ColorSchemeKind>
Enclosing class:
ComponentState

public static enum ComponentState.ColorSchemeKind
extends Enum<ComponentState.ColorSchemeKind>

Enum for color scheme kind. Is used in order to decouple the actual current color scheme and the decision on whether to use it.

Author:
Kirill Grouchnikov

Enum Constant Summary
CURRENT
          Current color scheme (e.g.
DISABLED
          Disabled color scheme (usually ColorSchemeEnum#LIGHT_GRAY).
REGULAR
          Regular color scheme (usually ColorSchemeEnum#METALLIC).
 
Method Summary
static ComponentState.ColorSchemeKind valueOf(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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CURRENT

public static final ComponentState.ColorSchemeKind CURRENT
Current color scheme (e.g. ColorSchemeEnum#AQUA).


REGULAR

public static final ComponentState.ColorSchemeKind REGULAR
Regular color scheme (usually ColorSchemeEnum#METALLIC).


DISABLED

public static final ComponentState.ColorSchemeKind DISABLED
Disabled color scheme (usually ColorSchemeEnum#LIGHT_GRAY).

Method Detail

values

public static final ComponentState.ColorSchemeKind[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ComponentState.ColorSchemeKind c : ComponentState.ColorSchemeKind.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static ComponentState.ColorSchemeKind valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name