public static enum EnumeratedColumnsParser.ParseStrategy extends Enum<EnumeratedColumnsParser.ParseStrategy>
Enum Constant and Description |
---|
FAST
Simplest possible.
|
QUOTED
Same as
FAST but assumes values are quoted (they have to be, ALL of them). |
RFC4180
As specified by the RFC4180 standard.
|
Modifier and Type | Method and Description |
---|---|
abstract EnumeratedColumnsParser.LineView |
make(int numberOfColumns,
char delimiter) |
static EnumeratedColumnsParser.ParseStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumeratedColumnsParser.ParseStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumeratedColumnsParser.ParseStrategy FAST
public static final EnumeratedColumnsParser.ParseStrategy QUOTED
FAST
but assumes values are quoted (they have to be, ALL of them).public static final EnumeratedColumnsParser.ParseStrategy RFC4180
public static EnumeratedColumnsParser.ParseStrategy[] values()
for (EnumeratedColumnsParser.ParseStrategy c : EnumeratedColumnsParser.ParseStrategy.values()) System.out.println(c);
public static EnumeratedColumnsParser.ParseStrategy 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 abstract EnumeratedColumnsParser.LineView make(int numberOfColumns, char delimiter)
Copyright © 2019 Optimatika. All rights reserved.