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