public enum TLinefeedsCommaOption extends Enum<TLinefeedsCommaOption>
| Enum Constant and Description |
|---|
LfAfterComma
Keep the comma at the end of the previous item, then break the line.
|
LfBeforeComma
Break before the comma without inserting a following space.
|
LfbeforeCommaWithSpace
Break before the comma and insert one space between it and the next item.
|
| 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)