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