public static enum Dialog.OpalDialogType extends java.lang.Enum<Dialog.OpalDialogType>
Enum Constant | Description |
---|---|
CLOSE |
|
NO_BUTTON |
|
NONE |
|
OK |
|
OK_CANCEL |
|
OTHER |
|
SELECT_CANCEL |
|
YES_NO |
Modifier and Type | Method | Description |
---|---|---|
static Dialog.OpalDialogType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Dialog.OpalDialogType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dialog.OpalDialogType CLOSE
public static final Dialog.OpalDialogType YES_NO
public static final Dialog.OpalDialogType OK
public static final Dialog.OpalDialogType OK_CANCEL
public static final Dialog.OpalDialogType SELECT_CANCEL
public static final Dialog.OpalDialogType NO_BUTTON
public static final Dialog.OpalDialogType OTHER
public static final Dialog.OpalDialogType NONE
public static Dialog.OpalDialogType[] values()
for (Dialog.OpalDialogType c : Dialog.OpalDialogType.values()) System.out.println(c);
public static Dialog.OpalDialogType 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