Package com.bc.ceres.glayer.swing
Enum WakefulComponent.VisualState
- java.lang.Object
-
- java.lang.Enum<WakefulComponent.VisualState>
-
- com.bc.ceres.glayer.swing.WakefulComponent.VisualState
-
- All Implemented Interfaces:
Serializable
,Comparable<WakefulComponent.VisualState>
- Enclosing class:
- WakefulComponent
public static enum WakefulComponent.VisualState extends Enum<WakefulComponent.VisualState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVATING
ACTIVE
DEACTIVATING
INACTIVE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WakefulComponent.VisualState
valueOf(String name)
Returns the enum constant of this type with the specified name.static WakefulComponent.VisualState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INACTIVE
public static final WakefulComponent.VisualState INACTIVE
-
ACTIVATING
public static final WakefulComponent.VisualState ACTIVATING
-
ACTIVE
public static final WakefulComponent.VisualState ACTIVE
-
DEACTIVATING
public static final WakefulComponent.VisualState DEACTIVATING
-
-
Method Detail
-
values
public static WakefulComponent.VisualState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WakefulComponent.VisualState c : WakefulComponent.VisualState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WakefulComponent.VisualState 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 nameNullPointerException
- if the argument is null
-
-