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