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