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