public static enum LineAppendable.Options extends Enum<LineAppendable.Options>
| Enum Constant and Description |
|---|
COLLAPSE_WHITESPACE |
CONVERT_TABS |
PASS_THROUGH |
PREFIX_PRE_FORMATTED |
TRIM_LEADING_EOL |
TRIM_LEADING_WHITESPACE |
TRIM_TRAILING_WHITESPACE |
| Modifier and Type | Method and Description |
|---|---|
static LineAppendable.Options |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineAppendable.Options[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineAppendable.Options CONVERT_TABS
public static final LineAppendable.Options COLLAPSE_WHITESPACE
public static final LineAppendable.Options TRIM_TRAILING_WHITESPACE
public static final LineAppendable.Options PASS_THROUGH
public static final LineAppendable.Options TRIM_LEADING_WHITESPACE
public static final LineAppendable.Options TRIM_LEADING_EOL
public static final LineAppendable.Options PREFIX_PRE_FORMATTED
public static LineAppendable.Options[] values()
for (LineAppendable.Options c : LineAppendable.Options.values()) System.out.println(c);
public static LineAppendable.Options 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 nullCopyright © 2020. All rights reserved.