public enum ColonneParametreeUniteEntree extends Enum<ColonneParametreeUniteEntree>
ColonneParametreeFormat
peut appliquer une conversion de la donnée, cependant la donnée
d'entrée doit être dans une unité spécifique pour que le calcul soit viable (on ne peut convertir sans requête SQL
des heures centièmes en jours car cela dépend de la situation d'un collaborateur au temps t).Enum Constant and Description |
---|
ANY |
HEURES_CENTIEMES |
JOURS |
Modifier and Type | Method and Description |
---|---|
static ColonneParametreeUniteEntree |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColonneParametreeUniteEntree[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColonneParametreeUniteEntree ANY
public static final ColonneParametreeUniteEntree JOURS
public static final ColonneParametreeUniteEntree HEURES_CENTIEMES
public static ColonneParametreeUniteEntree[] values()
for (ColonneParametreeUniteEntree c : ColonneParametreeUniteEntree.values()) System.out.println(c);
public static ColonneParametreeUniteEntree 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.