public enum UIStateType extends Enum<UIStateType>
| Enum Constant and Description |
|---|
START |
TABLECURATION |
TABLEUPDATE |
TR_CLOSE |
TR_OPEN |
TR_READONLY |
WIZARD_OPEN |
| Modifier and Type | Method and Description |
|---|---|
static UIStateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UIStateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIStateType START
public static final UIStateType TR_OPEN
public static final UIStateType TABLEUPDATE
public static final UIStateType TABLECURATION
public static final UIStateType TR_READONLY
public static final UIStateType TR_CLOSE
public static final UIStateType WIZARD_OPEN
public static UIStateType[] values()
for (UIStateType c : UIStateType.values()) System.out.println(c);
public static UIStateType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.