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