|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<CsvParseEvent.EventType> com.jidesoft.csv.CsvParseEvent.EventType
public static enum CsvParseEvent.EventType
Indicates whether the event signifies a token or a line
Enum Constant Summary | |
---|---|
FILE
This is deprecated and will be removed sometime after release 3.3.1 |
|
INPUT_END
Reached the end of the input stream |
|
INPUT_START
Reached the start of the input stream |
|
LINE
|
|
TOKEN
|
Method Summary | |
---|---|
static CsvParseEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CsvParseEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CsvParseEvent.EventType TOKEN
public static final CsvParseEvent.EventType LINE
public static final CsvParseEvent.EventType INPUT_START
public static final CsvParseEvent.EventType INPUT_END
public static final CsvParseEvent.EventType FILE
Method Detail |
---|
public static CsvParseEvent.EventType[] values()
for (CsvParseEvent.EventType c : CsvParseEvent.EventType.values()) System.out.println(c);
public static CsvParseEvent.EventType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
JIDE 3.5.15 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |