
public enum Confirmation extends Enum<Confirmation>
IConfirmationProvider| Modifier and Type | Method and Description |
|---|---|
static Confirmation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Confirmation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Confirmation OK
public static final Confirmation CANCEL
public static final Confirmation YES
public static final Confirmation NO
public static Confirmation[] values()
for (Confirmation c : Confirmation.values()) System.out.println(c);
public static Confirmation valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright (c) 2011-2014 Eike Stepper (Berlin, Germany) and others.