public static enum CBError.CBInternalError extends java.lang.Enum<CBError.CBInternalError>
Enum Constant and Description |
---|
HTTP_NOT_FOUND |
INTERNET_UNAVAILABLE |
INVALID_RESPONSE |
MISCELLANEOUS |
NETWORK_FAILURE |
PUBLIC_KEY_MISSING |
UNEXPECTED_RESPONSE |
Modifier and Type | Method and Description |
---|---|
static CBError.CBInternalError |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CBError.CBInternalError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CBError.CBInternalError MISCELLANEOUS
public static final CBError.CBInternalError INTERNET_UNAVAILABLE
public static final CBError.CBInternalError INVALID_RESPONSE
public static final CBError.CBInternalError UNEXPECTED_RESPONSE
public static final CBError.CBInternalError NETWORK_FAILURE
public static final CBError.CBInternalError PUBLIC_KEY_MISSING
public static final CBError.CBInternalError HTTP_NOT_FOUND
public static CBError.CBInternalError[] values()
for (CBError.CBInternalError c : CBError.CBInternalError.values()) System.out.println(c);
public static CBError.CBInternalError 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