public enum ProviderErrorReason extends Enum<ProviderErrorReason>
Enum Constant and Description |
---|
INTERNAL_ERROR
Internal RA/stack error
|
LOCAL_REJECT
Local rejection of a response to this operation.
|
NO_LINKED_RESPONSE
No linked operations invoked in response to a Class 2 operation within the invoke timeout
|
NO_RESPONSE
No response to a Class 1 or Class 3 operation within the invoke timeout.
|
PROTOCOL_ERROR
General protocol error
|
REMOTE_REJECT
Remote rejection of the operation invoke (a TC-U-REJECT or TC-R-REJECT was received)
|
Modifier and Type | Method and Description |
---|---|
static ProviderErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProviderErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProviderErrorReason INTERNAL_ERROR
public static final ProviderErrorReason PROTOCOL_ERROR
public static final ProviderErrorReason LOCAL_REJECT
public static final ProviderErrorReason REMOTE_REJECT
public static final ProviderErrorReason NO_RESPONSE
public static final ProviderErrorReason NO_LINKED_RESPONSE
public static ProviderErrorReason[] values()
for (ProviderErrorReason c : ProviderErrorReason.values()) System.out.println(c);
public static ProviderErrorReason 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 null