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