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