public static enum CustomParser.ParserType extends java.lang.Enum<CustomParser.ParserType>
| Modifier and Type | Field and Description |
|---|---|
boolean |
parallelParseSupported |
| Modifier and Type | Method and Description |
|---|---|
static CustomParser.ParserType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomParser.ParserType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomParser.ParserType AUTO
public static final CustomParser.ParserType XLS
public static final CustomParser.ParserType XLSX
public static final CustomParser.ParserType CSV
public static final CustomParser.ParserType SVMLight
public static CustomParser.ParserType[] values()
for (CustomParser.ParserType c : CustomParser.ParserType.values()) System.out.println(c);
public static CustomParser.ParserType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null