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