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