public static enum APIConnectClientException.Reason extends java.lang.Enum<APIConnectClientException.Reason>
Enum Constant and Description |
---|
APIC_COMMUNICATION_ERROR |
APIC_PARSE_RESPONSE_ERROR |
APIC_REQUEST_ERROR |
APIC_UNKNOWN_ERROR |
APIC_VALIDATION_ERROR |
Modifier and Type | Method and Description |
---|---|
static APIConnectClientException.Reason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIConnectClientException.Reason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIConnectClientException.Reason APIC_COMMUNICATION_ERROR
public static final APIConnectClientException.Reason APIC_REQUEST_ERROR
public static final APIConnectClientException.Reason APIC_PARSE_RESPONSE_ERROR
public static final APIConnectClientException.Reason APIC_VALIDATION_ERROR
public static final APIConnectClientException.Reason APIC_UNKNOWN_ERROR
public static APIConnectClientException.Reason[] values()
for (APIConnectClientException.Reason c : APIConnectClientException.Reason.values()) System.out.println(c);
public static APIConnectClientException.Reason 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