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