public static enum EventWriterUnsync.IOStatus extends java.lang.Enum<EventWriterUnsync.IOStatus>
enum
denotes the status of a read. Enum Constant and Description |
---|
CANNOT_OPEN_FILE |
END_OF_FILE |
EVIO_EXCEPTION |
SUCCESS |
UNKNOWN_ERROR |
Modifier and Type | Method and Description |
---|---|
static EventWriterUnsync.IOStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventWriterUnsync.IOStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventWriterUnsync.IOStatus SUCCESS
public static final EventWriterUnsync.IOStatus END_OF_FILE
public static final EventWriterUnsync.IOStatus EVIO_EXCEPTION
public static final EventWriterUnsync.IOStatus CANNOT_OPEN_FILE
public static final EventWriterUnsync.IOStatus UNKNOWN_ERROR
public static EventWriterUnsync.IOStatus[] values()
for (EventWriterUnsync.IOStatus c : EventWriterUnsync.IOStatus.values()) System.out.println(c);
public static EventWriterUnsync.IOStatus 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