org.homeunix.thecave.buddi.i18n.keys
Enum ImportLegacyDataKeys
java.lang.Object
java.lang.Enum<ImportLegacyDataKeys>
org.homeunix.thecave.buddi.i18n.keys.ImportLegacyDataKeys
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ImportLegacyDataKeys>
public enum ImportLegacyDataKeys
- extends java.lang.Enum<ImportLegacyDataKeys>
Translation Keys used in the Import Legacy Data plugin. We keep these
in a separate class to aid their eventual removal in version 3.2.
- Author:
- wyatt
|
Method Summary |
static ImportLegacyDataKeys |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImportLegacyDataKeys[] |
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 |
IMPORT_LEGACY_ACCOUNT_OVERDRAFT_CREDIT_VALUE_DIFFERS
public static final ImportLegacyDataKeys IMPORT_LEGACY_ACCOUNT_OVERDRAFT_CREDIT_VALUE_DIFFERS
IMPORT_LEGACY_BUDGET_CATEGORY_DELETE_STATUS_DIFFERS
public static final ImportLegacyDataKeys IMPORT_LEGACY_BUDGET_CATEGORY_DELETE_STATUS_DIFFERS
IMPORT_LEGACY_POTENTIAL_WARNINGS_TITLE
public static final ImportLegacyDataKeys IMPORT_LEGACY_POTENTIAL_WARNINGS_TITLE
IMPORT_LEGACY_BUDGET_CATEGORY_TYPE_DIFFERS
public static final ImportLegacyDataKeys IMPORT_LEGACY_BUDGET_CATEGORY_TYPE_DIFFERS
IMPORT_LEGACY_ACCOUNT_DELETE_STATUS_DIFFERS
public static final ImportLegacyDataKeys IMPORT_LEGACY_ACCOUNT_DELETE_STATUS_DIFFERS
IMPORT_LEGACY_ACCOUNT_TYPE_DIFFERS
public static final ImportLegacyDataKeys IMPORT_LEGACY_ACCOUNT_TYPE_DIFFERS
IMPORT_LEGACY_ACCOUNT_STARTING_BALANCE_DIFFERS
public static final ImportLegacyDataKeys IMPORT_LEGACY_ACCOUNT_STARTING_BALANCE_DIFFERS
IMPORT_LEGACY_POTENTIAL_WARNINGS
public static final ImportLegacyDataKeys IMPORT_LEGACY_POTENTIAL_WARNINGS
IMPORT_LEGACY_BUDDI_FORMAT
public static final ImportLegacyDataKeys IMPORT_LEGACY_BUDDI_FORMAT
IMPORT_LEGACY_MESSAGE_CONVERTING_LEGACY_DATA_FILE
public static final ImportLegacyDataKeys IMPORT_LEGACY_MESSAGE_CONVERTING_LEGACY_DATA_FILE
IMPORT_LEGACY_BUDDI_FILES
public static final ImportLegacyDataKeys IMPORT_LEGACY_BUDDI_FILES
values
public static final ImportLegacyDataKeys[] 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(ImportLegacyDataKeys c : ImportLegacyDataKeys.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ImportLegacyDataKeys 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