public enum Civilite extends Enum<Civilite>
Utilisation de la publication europenne suivante comme reference:
http://publications.europa.eu/code/fr/fr-5000300.htm
| Enum Constant and Description |
|---|
docteur |
excellence |
madame |
mademoiselle |
maitre |
majeste |
monsieur |
professeur |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
List<String> |
valueList() |
static Civilite |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Civilite[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Civilite monsieur
public static final Civilite madame
public static final Civilite mademoiselle
public static final Civilite maitre
public static final Civilite docteur
public static final Civilite professeur
public static final Civilite majeste
public static final Civilite excellence
public static Civilite[] values()
for (Civilite c : Civilite.values()) System.out.println(c);
public static Civilite 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 © 2012. All Rights Reserved.