public static enum TMessageBox.Result extends java.lang.Enum<TMessageBox.Result>
Enum Constant and Description |
---|
CANCEL
User clicked "Cancel".
|
NO
User clicked "No".
|
OK
User clicked "OK".
|
YES
User clicked "Yes".
|
Modifier and Type | Method and Description |
---|---|
static TMessageBox.Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TMessageBox.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TMessageBox.Result OK
public static final TMessageBox.Result CANCEL
public static final TMessageBox.Result YES
public static final TMessageBox.Result NO
public static TMessageBox.Result[] values()
for (TMessageBox.Result c : TMessageBox.Result.values()) System.out.println(c);
public static TMessageBox.Result 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 nullCopyright © 2019 Kevin Lamonte. Licensed MIT.