public enum DefaultDialogAction extends java.lang.Enum<DefaultDialogAction>
| Enum Constant and Description |
|---|
DESTROY
Hide the dialog and then destroy it.
|
DO_NOTHING
Do nothing / take no action.
|
HIDE
Hide the dialog.
|
| Modifier and Type | Method and Description |
|---|---|
static DefaultDialogAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultDialogAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultDialogAction DO_NOTHING
public static final DefaultDialogAction HIDE
public static final DefaultDialogAction DESTROY
public static DefaultDialogAction[] values()
for (DefaultDialogAction c : DefaultDialogAction.values()) System.out.println(c);
public static DefaultDialogAction 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