public enum Resources extends Enum<Resources> implements MessageKey
| Enum Constant and Description |
|---|
DYNAMO_CONSTRAINT_DECIMAL_EXCEEDED
Contrainte le format d'un BigDecimal.
|
DYNAMO_CONSTRAINT_DECIMALLENGTH_EXCEEDED
Contrainte de longueur pour un BigDecimal.
|
DYNAMO_CONSTRAINT_INTEGERLENGTH_EXCEEDED
Contrainte de longueur pour un Integer.
|
DYNAMO_CONSTRAINT_LONGLENGTH_EXCEEDED
Contrainte de longueur pour un Long.
|
DYNAMO_CONSTRAINT_NUMBER_MAXIMUM
Contrainte de valeur minimum pour un Number.
|
DYNAMO_CONSTRAINT_NUMBER_MINIMUM
Contrainte de valeur minimum pour un Number.
|
DYNAMO_CONSTRAINT_REGEXP
Contrainte par expression regulière.
|
DYNAMO_CONSTRAINT_STRINGLENGTH_EXCEEDED
Contrainte de longueur pour une String.
|
| 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_CONSTRAINT_STRINGLENGTH_EXCEEDED
public static final Resources DYNAMO_CONSTRAINT_INTEGERLENGTH_EXCEEDED
public static final Resources DYNAMO_CONSTRAINT_LONGLENGTH_EXCEEDED
public static final Resources DYNAMO_CONSTRAINT_DECIMALLENGTH_EXCEEDED
public static final Resources DYNAMO_CONSTRAINT_DECIMAL_EXCEEDED
public static final Resources DYNAMO_CONSTRAINT_NUMBER_MINIMUM
public static final Resources DYNAMO_CONSTRAINT_NUMBER_MAXIMUM
public static final Resources DYNAMO_CONSTRAINT_REGEXP
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 © 2014. All Rights Reserved.