public enum Resources extends Enum<Resources> implements io.vertigo.lang.MessageKey
| Enum Constant and Description |
|---|
CHAMP_OBLIGATOIRE
{0} : le champ est obligatoire.
|
| 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.
|
public static final Resources CHAMP_OBLIGATOIRE
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 © 2017. All Rights Reserved.