public enum CreoleMode extends java.lang.Enum<CreoleMode>
Enum Constant and Description |
---|
FULL |
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 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 nullCopyright © 2019. All Rights Reserved.