public static enum SUIWindow.Trigger extends java.lang.Enum<SUIWindow.Trigger>
| Modifier and Type | Field and Description |
|---|---|
static byte |
TRIGGER_CANCEL |
static byte |
TRIGGER_OK |
static byte |
TRIGGER_UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static SUIWindow.Trigger |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SUIWindow.Trigger[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static byte TRIGGER_UPDATE
public static byte TRIGGER_OK
public static byte TRIGGER_CANCEL
public static SUIWindow.Trigger[] values()
for (SUIWindow.Trigger c : SUIWindow.Trigger.values()) System.out.println(c);
public static SUIWindow.Trigger 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