public static enum TableParser.Option extends Enum<TableParser.Option>
| Enum Constant and Description |
|---|
MAINTAIN_STREAM_POSITION |
STRIP_QUOTING |
THROW_PARSER_ERRORS |
TRIM_COLUMN_WHITESPACE |
TRIM_EMPTY_TRAILING_COLUMNS |
TRIM_EMPTY_TRAILING_ROWS |
UNESCAPE_BACKSLASH |
| Modifier and Type | Method and Description |
|---|---|
static TableParser.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableParser.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableParser.Option STRIP_QUOTING
public static final TableParser.Option UNESCAPE_BACKSLASH
public static final TableParser.Option TRIM_COLUMN_WHITESPACE
public static final TableParser.Option TRIM_EMPTY_TRAILING_COLUMNS
public static final TableParser.Option TRIM_EMPTY_TRAILING_ROWS
public static final TableParser.Option MAINTAIN_STREAM_POSITION
public static final TableParser.Option THROW_PARSER_ERRORS
public static TableParser.Option[] values()
for (TableParser.Option c : TableParser.Option.values()) System.out.println(c);
public static TableParser.Option 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 © 2014. All rights reserved.