public enum ProviderAbortReason extends Enum<ProviderAbortReason>
Enum Constant and Description |
---|
INTERNAL_ERROR
Provider abort due to an internal error
|
PROTOCOL_ERROR
Local Provider abort due to a protocol error in a message received by the peer
|
PROVIDER_ABORT
Received a TC-ABORT from the peer with an ABRT PDU with abort-source = dialog-service-provider;
or received a TC-P-ABORT from the local stack with a p-abortCause (which reflects either a local
provider abort, or a remote TC-ABORT with a p-abortCause)
|
REMOTE_NODE_UNREACHABLE
Provider abort due to the remote node being unreachable
|
UNPROCESSED_OPEN
Provider abort due to an unprocessed open request event.
|
UNPROCESSED_REJECT
Provider abort due to an unprocessed component reject event.
|
Modifier and Type | Method and Description |
---|---|
static ProviderAbortReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProviderAbortReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProviderAbortReason INTERNAL_ERROR
public static final ProviderAbortReason PROTOCOL_ERROR
public static final ProviderAbortReason PROVIDER_ABORT
public static final ProviderAbortReason REMOTE_NODE_UNREACHABLE
public static final ProviderAbortReason UNPROCESSED_OPEN
public static final ProviderAbortReason UNPROCESSED_REJECT
public static ProviderAbortReason[] values()
for (ProviderAbortReason c : ProviderAbortReason.values()) System.out.println(c);
public static ProviderAbortReason 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