Enum QueueField
- java.lang.Object
-
- java.lang.Enum<QueueField>
-
- org.apache.activemq.artemis.core.management.impl.view.QueueField
-
- All Implemented Interfaces:
Serializable,Comparable<QueueField>
public enum QueueField extends Enum<QueueField>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()static QueueFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static QueueFieldvalueOfName(String name)static QueueField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ID
public static final QueueField ID
-
NAME
public static final QueueField NAME
-
CONSUMER_ID
public static final QueueField CONSUMER_ID
-
ADDRESS
public static final QueueField ADDRESS
-
MAX_CONSUMERS
public static final QueueField MAX_CONSUMERS
-
FILTER
public static final QueueField FILTER
-
MESSAGE_COUNT
public static final QueueField MESSAGE_COUNT
-
CONSUMER_COUNT
public static final QueueField CONSUMER_COUNT
-
DELIVERING_COUNT
public static final QueueField DELIVERING_COUNT
-
MESSAGES_ADDED
public static final QueueField MESSAGES_ADDED
-
MESSAGES_ACKED
public static final QueueField MESSAGES_ACKED
-
MESSAGES_EXPIRED
public static final QueueField MESSAGES_EXPIRED
-
ROUTING_TYPE
public static final QueueField ROUTING_TYPE
-
USER
public static final QueueField USER
-
AUTO_CREATED
public static final QueueField AUTO_CREATED
-
DURABLE
public static final QueueField DURABLE
-
PAUSED
public static final QueueField PAUSED
-
TEMPORARY
public static final QueueField TEMPORARY
-
PURGE_ON_NO_CONSUMERS
public static final QueueField PURGE_ON_NO_CONSUMERS
-
MESSAGES_KILLED
public static final QueueField MESSAGES_KILLED
-
DIRECT_DELIVER
public static final QueueField DIRECT_DELIVER
-
LAST_VALUE
public static final QueueField LAST_VALUE
-
EXCLUSIVE
public static final QueueField EXCLUSIVE
-
SCHEDULED_COUNT
public static final QueueField SCHEDULED_COUNT
-
LAST_VALUE_KEY
public static final QueueField LAST_VALUE_KEY
-
GROUP_REBALANCE
public static final QueueField GROUP_REBALANCE
-
GROUP_REBALANCE_PAUSE_DISPATCH
public static final QueueField GROUP_REBALANCE_PAUSE_DISPATCH
-
GROUP_BUCKETS
public static final QueueField GROUP_BUCKETS
-
GROUP_FIRST_KEY
public static final QueueField GROUP_FIRST_KEY
-
ENABLED
public static final QueueField ENABLED
-
RING_SIZE
public static final QueueField RING_SIZE
-
CONSUMERS_BEFORE_DISPATCH
public static final QueueField CONSUMERS_BEFORE_DISPATCH
-
DELAY_BEFORE_DISPATCH
public static final QueueField DELAY_BEFORE_DISPATCH
-
AUTO_DELETE
public static final QueueField AUTO_DELETE
-
-
Method Detail
-
values
public static QueueField[] 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 (QueueField c : QueueField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QueueField 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 nameNullPointerException- if the argument is null
-
getName
public String getName()
-
valueOfName
public static QueueField valueOfName(String name)
-
-