org.apache.qpid.transport
Enum Option

java.lang.Object
  extended by java.lang.Enum<Option>
      extended by org.apache.qpid.transport.Option
All Implemented Interfaces:
Serializable, Comparable<Option>

public enum Option
extends Enum<Option>


Enum Constant Summary
ARGS_NOT_MATCHED
           
AUTO_DELETE
           
BATCH
           
COMPLETED
           
CONFIRMED
           
DISCARD_UNROUTABLE
           
DURABLE
           
EXCHANGE_NOT_FOUND
           
EXCLUSIVE
           
EXPECTED
           
FAIL
           
FIRST
           
FORCE
           
IF_EMPTY
           
IF_UNUSED
           
IMMEDIATE
           
INSIST
           
JOIN
           
KEY_NOT_MATCHED
           
LAST
           
NONE
           
NOT_FOUND
           
ONE_PHASE
           
PASSIVE
           
QUEUE_NOT_FOUND
           
QUEUE_NOT_MATCHED
           
REDELIVERED
           
RESUME
           
SET_REDELIVERED
           
SUSPEND
           
SYNC
           
TIMELY_REPLY
           
UNRELIABLE
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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