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