public enum ReadStatus extends Enum<ReadStatus>
| Enum Constant and Description |
|---|
NO_SUCH_TABLE
Read failed due to an invalid table name being specified.
|
OK
Read completed successfully.
|
| Modifier and Type | Method and Description |
|---|---|
static ReadStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReadStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReadStatus OK
public static final ReadStatus NO_SUCH_TABLE
public static ReadStatus[] values()
for (ReadStatus c : ReadStatus.values()) System.out.println(c);
public static ReadStatus 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 © 2015. All rights reserved.