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