public static enum CsvReader.TokenType extends Enum<CsvReader.TokenType>
Enum Constant and Description |
---|
ELEMENT |
END_DOCUMENT |
END_ROW |
Modifier and Type | Method and Description |
---|---|
static CsvReader.TokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CsvReader.TokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvReader.TokenType ELEMENT
public static final CsvReader.TokenType END_ROW
public static final CsvReader.TokenType END_DOCUMENT
public static CsvReader.TokenType[] values()
for (CsvReader.TokenType c : CsvReader.TokenType.values()) System.out.println(c);
public static CsvReader.TokenType 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 © 2018 SPF4J. All rights reserved.