protected static enum AlephFormatter.State extends java.lang.Enum<AlephFormatter.State>
| Enum Constant and Description |
|---|
ESCAPE_CHAR |
FREE_TEXT |
PARAM |
PARAM_END |
PARAM_START |
| Modifier and Type | Method and Description |
|---|---|
static AlephFormatter.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlephFormatter.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlephFormatter.State FREE_TEXT
public static final AlephFormatter.State PARAM
public static final AlephFormatter.State PARAM_START
public static final AlephFormatter.State PARAM_END
public static final AlephFormatter.State ESCAPE_CHAR
public static AlephFormatter.State[] values()
for (AlephFormatter.State c : AlephFormatter.State.values()) System.out.println(c);
public static AlephFormatter.State valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null