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 SummaryEnum Constants Enum Constant Description ACTIVATINGACTIVEDEACTIVATINGINACTIVE
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static WakefulComponent.VisualStatevalueOf(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- 
INACTIVEpublic static final WakefulComponent.VisualState INACTIVE 
 - 
ACTIVATINGpublic static final WakefulComponent.VisualState ACTIVATING 
 - 
ACTIVEpublic static final WakefulComponent.VisualState ACTIVE 
 - 
DEACTIVATINGpublic static final WakefulComponent.VisualState DEACTIVATING 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-