public enum EtatEncaissement extends Enum<EtatEncaissement>
Enum Constant and Description |
---|
NON_REGLE |
REGLE |
REMIS_BANQUE |
Modifier and Type | Method and Description |
---|---|
String |
getLibelleEtat() |
static String |
getLibelleEtat(String etat) |
String |
value() |
static EtatEncaissement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EtatEncaissement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EtatEncaissement NON_REGLE
public static final EtatEncaissement REGLE
public static final EtatEncaissement REMIS_BANQUE
public static EtatEncaissement[] values()
for (EtatEncaissement c : EtatEncaissement.values()) System.out.println(c);
public static EtatEncaissement 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()
public String getLibelleEtat()
Copyright © 2016. All rights reserved.