public enum TypeLieuDepart extends Enum<TypeLieuDepart>
Modifier and Type | Method and Description |
---|---|
static TypeLieuDepart |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypeLieuDepart[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeLieuDepart BUREAU
public static final TypeLieuDepart DOMICILE
public static final TypeLieuDepart AUTRE
public static TypeLieuDepart[] values()
for (TypeLieuDepart c : TypeLieuDepart.values()) System.out.println(c);
public static TypeLieuDepart 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 © 2016. All rights reserved.