Enum ReplyFailure
- All Implemented Interfaces:
Serializable, Comparable<ReplyFailure>
Represents the type of reply failure
- Author:
- Tim Fox
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA fatal error occured while delivering the message.The message send failed because no handlers were available to handle the message.The message send failed because the recipient actively sent back a failure (rejected the message).The message send failed because no reply was received before the timeout time. -
Method Summary
Modifier and TypeMethodDescriptionstatic ReplyFailurefromInt(int i) inttoInt()static ReplyFailureReturns the enum constant of this type with the specified name.static ReplyFailure[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TIMEOUT
The message send failed because no reply was received before the timeout time. -
NO_HANDLERS
The message send failed because no handlers were available to handle the message. -
RECIPIENT_FAILURE
The message send failed because the recipient actively sent back a failure (rejected the message). -
ERROR
A fatal error occured while delivering the message. Do not retry to send.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromInt
-
toInt
public int toInt()
-