composant_saisie.wSaisieFormat
Enum Fma
Object
Enum<Fma>
composant_saisie.wSaisieFormat.Fma
- All Implemented Interfaces:
- Serializable, Comparable<Fma>
public enum Fma
- extends Enum<Fma>
Identifiant du type d'affichage des Edits
- Author:
- William
A_doc
Licence
.
Field Summary |
(package private) int |
fma
|
Method Summary |
int |
value()
|
static Fma |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Fma[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class Object |
getClass, notify, notifyAll, wait, wait, wait |
FIELD
public static final Fma FIELD
CHECK
public static final Fma CHECK
F2
public static final Fma F2
NUM
public static final Fma NUM
INTERO
public static final Fma INTERO
GRAS
public static final Fma GRAS
NORMAL
public static final Fma NORMAL
NUMGRAS
public static final Fma NUMGRAS
LIBEMAX
public static final Fma LIBEMAX
INVISIBLE
public static final Fma INVISIBLE
NUMSPACE
public static final Fma NUMSPACE
NUMGRASSPACE
public static final Fma NUMGRASSPACE
RADIO
public static final Fma RADIO
DATE
public static final Fma DATE
MONTH
public static final Fma MONTH
YEAR
public static final Fma YEAR
TIME
public static final Fma TIME
PHONE
public static final Fma PHONE
SECU
public static final Fma SECU
URSS
public static final Fma URSS
POSTAL
public static final Fma POSTAL
TIMEDELAY
public static final Fma TIMEDELAY
PLAGETIMES
public static final Fma PLAGETIMES
CACHE
public static final Fma CACHE
PRINTSPACE
public static final Fma PRINTSPACE
PRINTLIBE
public static final Fma PRINTLIBE
PRINTCHAMP
public static final Fma PRINTCHAMP
PRINTRUPTURE
public static final Fma PRINTRUPTURE
PRINTSOMME
public static final Fma PRINTSOMME
PRINTCOUNT
public static final Fma PRINTCOUNT
PRINTRUPTUREINVISIBLE
public static final Fma PRINTRUPTUREINVISIBLE
fma
int fma
values
public static Fma[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Fma c : Fma.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Fma valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
value
public int value()