org.apache.qpid.tools.messagestore.commands
Enum Show.Columns
java.lang.Object
java.lang.Enum<Show.Columns>
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>
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. |
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
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