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