public enum UiContainerState extends java.lang.Enum<UiContainerState>
| Enum Constant and Description | 
|---|
INTERPOLATE  | 
LAYOUT  | 
NOOP  | 
RENDER  | 
UPDATE  | 
| Modifier and Type | Method and Description | 
|---|---|
static UiContainerState | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static UiContainerState[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final UiContainerState NOOP
public static final UiContainerState LAYOUT
public static final UiContainerState UPDATE
public static final UiContainerState INTERPOLATE
public static final UiContainerState RENDER
public static UiContainerState[] values()
for (UiContainerState c : UiContainerState.values()) System.out.println(c);
public static UiContainerState 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