org.apache.qpid.transport
Enum Option
java.lang.Object
java.lang.Enum<Option>
org.apache.qpid.transport.Option
- All Implemented Interfaces:
- Serializable, Comparable<Option>
public enum Option
- extends Enum<Option>
Method Summary |
static Option |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
SYNC
public static final Option SYNC
DISCARD_UNROUTABLE
public static final Option DISCARD_UNROUTABLE
IMMEDIATE
public static final Option IMMEDIATE
REDELIVERED
public static final Option REDELIVERED
FIRST
public static final Option FIRST
LAST
public static final Option LAST
DURABLE
public static final Option DURABLE
NOT_FOUND
public static final Option NOT_FOUND
EXCHANGE_NOT_FOUND
public static final Option EXCHANGE_NOT_FOUND
QUEUE_NOT_FOUND
public static final Option QUEUE_NOT_FOUND
QUEUE_NOT_MATCHED
public static final Option QUEUE_NOT_MATCHED
KEY_NOT_MATCHED
public static final Option KEY_NOT_MATCHED
ARGS_NOT_MATCHED
public static final Option ARGS_NOT_MATCHED
EXCLUSIVE
public static final Option EXCLUSIVE
AUTO_DELETE
public static final Option AUTO_DELETE
INSIST
public static final Option INSIST
FORCE
public static final Option FORCE
TIMELY_REPLY
public static final Option TIMELY_REPLY
EXPECTED
public static final Option EXPECTED
CONFIRMED
public static final Option CONFIRMED
COMPLETED
public static final Option COMPLETED
SET_REDELIVERED
public static final Option SET_REDELIVERED
JOIN
public static final Option JOIN
RESUME
public static final Option RESUME
FAIL
public static final Option FAIL
SUSPEND
public static final Option SUSPEND
ONE_PHASE
public static final Option ONE_PHASE
PASSIVE
public static final Option PASSIVE
IF_UNUSED
public static final Option IF_UNUSED
IF_EMPTY
public static final Option IF_EMPTY
BATCH
public static final Option BATCH
UNRELIABLE
public static final Option UNRELIABLE
NONE
public static final Option NONE
values
public static Option[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Option c : Option.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Option valueOf(String name)
- 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 name
NullPointerException
- if the argument is null
Licensed to the Apache Software Foundation