org.homeunix.thecave.buddi.i18n.keys
Enum ButtonKeys
java.lang.Object
java.lang.Enum<ButtonKeys>
org.homeunix.thecave.buddi.i18n.keys.ButtonKeys
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ButtonKeys>
public enum ButtonKeys
- extends java.lang.Enum<ButtonKeys>
|
Method Summary |
static ButtonKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ButtonKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
BUTTON_VOID
public static final ButtonKeys BUTTON_VOID
BUTTON_ADD
public static final ButtonKeys BUTTON_ADD
BUTTON_CANCEL
public static final ButtonKeys BUTTON_CANCEL
BUTTON_CLEAR
public static final ButtonKeys BUTTON_CLEAR
BUTTON_CLOSE
public static final ButtonKeys BUTTON_CLOSE
BUTTON_CREATE_NEW_TRANSACTION
public static final ButtonKeys BUTTON_CREATE_NEW_TRANSACTION
BUTTON_DELETE
public static final ButtonKeys BUTTON_DELETE
BUTTON_DONATE
public static final ButtonKeys BUTTON_DONATE
BUTTON_DONE
public static final ButtonKeys BUTTON_DONE
BUTTON_DOWNLOAD
public static final ButtonKeys BUTTON_DOWNLOAD
BUTTON_EDIT
public static final ButtonKeys BUTTON_EDIT
BUTTON_LOAD
public static final ButtonKeys BUTTON_LOAD
BUTTON_NEW
public static final ButtonKeys BUTTON_NEW
BUTTON_NEW_DATA_FILE
public static final ButtonKeys BUTTON_NEW_DATA_FILE
BUTTON_NO
public static final ButtonKeys BUTTON_NO
BUTTON_NOT_NOW
public static final ButtonKeys BUTTON_NOT_NOW
BUTTON_OK
public static final ButtonKeys BUTTON_OK
BUTTON_OPEN_DATA_FILE
public static final ButtonKeys BUTTON_OPEN_DATA_FILE
BUTTON_OTHER
public static final ButtonKeys BUTTON_OTHER
BUTTON_OVERWRITE_TRANSACTON
public static final ButtonKeys BUTTON_OVERWRITE_TRANSACTON
BUTTON_RECORD
public static final ButtonKeys BUTTON_RECORD
BUTTON_REPLACE
public static final ButtonKeys BUTTON_REPLACE
BUTTON_REMOVE
public static final ButtonKeys BUTTON_REMOVE
BUTTON_UNDELETE
public static final ButtonKeys BUTTON_UNDELETE
BUTTON_UPDATE
public static final ButtonKeys BUTTON_UPDATE
BUTTON_YES
public static final ButtonKeys BUTTON_YES
values
public static final ButtonKeys[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ButtonKeys c : ButtonKeys.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ButtonKeys valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name