| Enum Constant and Description |
|---|
already_exists |
bad_credentials |
closed_connection |
config_error |
invalid |
is_bootstrapping |
overloaded |
protocol_error |
read_request_timeout |
server_error |
success |
syntax_error |
truncate_error |
unauthorized |
unavailable |
unprepared |
write_request_timeout |
| Modifier and Type | Method and Description |
|---|---|
static Result |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Result success
public static final Result read_request_timeout
public static final Result unavailable
public static final Result write_request_timeout
public static final Result server_error
public static final Result protocol_error
public static final Result bad_credentials
public static final Result overloaded
public static final Result is_bootstrapping
public static final Result truncate_error
public static final Result syntax_error
public static final Result unauthorized
public static final Result invalid
public static final Result config_error
public static final Result already_exists
public static final Result unprepared
public static final Result closed_connection
public static Result[] values()
for (Result c : Result.values()) System.out.println(c);
public static Result 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