public enum EtatValidation extends Enum<EtatValidation>
Enum Constant and Description |
---|
EN_COURS |
NON_VALIDEE |
TOUTES |
VALIDEE |
Modifier and Type | Method and Description |
---|---|
String |
value() |
static EtatValidation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EtatValidation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EtatValidation VALIDEE
public static final EtatValidation NON_VALIDEE
public static final EtatValidation EN_COURS
public static final EtatValidation TOUTES
public static EtatValidation[] values()
for (EtatValidation c : EtatValidation.values()) System.out.println(c);
public static EtatValidation 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.