public enum Resources extends Enum<Resources> implements MessageKey
| Enum Constant and Description |
|---|
DYNAMO_SQL_CONSTRAINT_ALREADY_REGISTRED
Unicity constraint problem.
|
DYNAMO_SQL_CONSTRAINT_IMPOSSIBLE_TO_DELETE
Impossible to delete entry due to referential constraint.
|
DYNAMO_SQL_CONSTRAINT_TOO_BIG_VALUE
Value to big for field in database.
|
| Modifier and Type | Method and Description |
|---|---|
static Resources |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Resources[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfnamepublic static final Resources DYNAMO_SQL_CONSTRAINT_TOO_BIG_VALUE
public static final Resources DYNAMO_SQL_CONSTRAINT_IMPOSSIBLE_TO_DELETE
public static final Resources DYNAMO_SQL_CONSTRAINT_ALREADY_REGISTRED
public static Resources[] values()
for (Resources c : Resources.values()) System.out.println(c);
public static Resources 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 © 2015. All Rights Reserved.