public static enum MessageExchange.FailureType extends java.lang.Enum<MessageExchange.FailureType>
Enum Constant and Description |
---|
ABORTED
Message exchange processing was aborted.
|
COMMUNICATION_ERROR
Network / IPC errror.
|
FORMAT_ERROR
Request message was of an invalid/unrecognized format.
|
INVALID_ENDPOINT
Requested endpoint is invalid.
|
NO_RESPONSE
An internal failure: no response was provided.
|
NOMATCH |
OTHER
Other failure.
|
UNKNOWN_ENDPOINT
Requested endpoint is unknown/unavailable.
|
UNKNOWN_OPERATION
Requested operation is unknown/unimplemented.
|
Modifier and Type | Method and Description |
---|---|
static MessageExchange.FailureType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageExchange.FailureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageExchange.FailureType INVALID_ENDPOINT
public static final MessageExchange.FailureType UNKNOWN_ENDPOINT
public static final MessageExchange.FailureType UNKNOWN_OPERATION
public static final MessageExchange.FailureType COMMUNICATION_ERROR
public static final MessageExchange.FailureType FORMAT_ERROR
public static final MessageExchange.FailureType NO_RESPONSE
public static final MessageExchange.FailureType ABORTED
public static final MessageExchange.FailureType OTHER
public static final MessageExchange.FailureType NOMATCH
public static MessageExchange.FailureType[] values()
for (MessageExchange.FailureType c : MessageExchange.FailureType.values()) System.out.println(c);
public static MessageExchange.FailureType 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