org.apache.qpid.tools.messagestore.commands
Enum Show.Columns

java.lang.Object
  extended by java.lang.Enum<Show.Columns>
      extended by org.apache.qpid.tools.messagestore.commands.Show.Columns
All Implemented Interfaces:
Serializable, Comparable<Show.Columns>
Enclosing class:
Show

public static enum Show.Columns
extends Enum<Show.Columns>


Enum Constant Summary
App_ID
           
Arrival
           
Cluster_ID
           
Content_Type
           
Correlation_ID
           
Delivery_Mode
           
Encoding
           
Exchange
           
Expiration
           
ID
           
isDelivered
           
isImmediate
           
isMandatory
           
isPersistent
           
isRedelivered
           
MsgHeaders
           
Priority
           
Property_Flag
           
ReplyTo
           
RoutingKey
           
Size
           
Timestamp
           
Type
           
UserID
           
 
Method Summary
static Show.Columns valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Show.Columns[] 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

ID

public static final Show.Columns ID

Size

public static final Show.Columns Size

Exchange

public static final Show.Columns Exchange

RoutingKey

public static final Show.Columns RoutingKey

isImmediate

public static final Show.Columns isImmediate

isMandatory

public static final Show.Columns isMandatory

isPersistent

public static final Show.Columns isPersistent

isRedelivered

public static final Show.Columns isRedelivered

isDelivered

public static final Show.Columns isDelivered

App_ID

public static final Show.Columns App_ID

Cluster_ID

public static final Show.Columns Cluster_ID

Content_Type

public static final Show.Columns Content_Type

Correlation_ID

public static final Show.Columns Correlation_ID

Delivery_Mode

public static final Show.Columns Delivery_Mode

Encoding

public static final Show.Columns Encoding

Arrival

public static final Show.Columns Arrival

Expiration

public static final Show.Columns Expiration

Priority

public static final Show.Columns Priority

Property_Flag

public static final Show.Columns Property_Flag

ReplyTo

public static final Show.Columns ReplyTo

Timestamp

public static final Show.Columns Timestamp

Type

public static final Show.Columns Type

UserID

public static final Show.Columns UserID

MsgHeaders

public static final Show.Columns MsgHeaders
Method Detail

values

public static Show.Columns[] 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 (Show.Columns c : Show.Columns.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Show.Columns 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