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