Enum StatQueue.FIELD
- java.lang.Object
-
- java.lang.Enum<StatQueue.FIELD>
-
- org.apache.activemq.artemis.cli.commands.queue.StatQueue.FIELD
-
- All Implemented Interfaces:
Serializable,Comparable<StatQueue.FIELD>
- Enclosing class:
- StatQueue
public static enum StatQueue.FIELD extends Enum<StatQueue.FIELD>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESSCONSUMER_COUNTDELIVERING_COUNTINTERNALMESSAGE_COUNTMESSAGES_ACKEDMESSAGES_ADDEDNAMEROUTING_TYPESCHEDULED_COUNT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatQueue.FIELDvalueOf(String name)Returns the enum constant of this type with the specified name.static StatQueue.FIELDvalueOfJsonId(String jsonId)static StatQueue.FIELD[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final StatQueue.FIELD NAME
-
ADDRESS
public static final StatQueue.FIELD ADDRESS
-
CONSUMER_COUNT
public static final StatQueue.FIELD CONSUMER_COUNT
-
MESSAGE_COUNT
public static final StatQueue.FIELD MESSAGE_COUNT
-
MESSAGES_ADDED
public static final StatQueue.FIELD MESSAGES_ADDED
-
DELIVERING_COUNT
public static final StatQueue.FIELD DELIVERING_COUNT
-
MESSAGES_ACKED
public static final StatQueue.FIELD MESSAGES_ACKED
-
SCHEDULED_COUNT
public static final StatQueue.FIELD SCHEDULED_COUNT
-
ROUTING_TYPE
public static final StatQueue.FIELD ROUTING_TYPE
-
INTERNAL
public static final StatQueue.FIELD INTERNAL
-
-
Method Detail
-
values
public static StatQueue.FIELD[] 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 (StatQueue.FIELD c : StatQueue.FIELD.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatQueue.FIELD 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
-
valueOfJsonId
public static StatQueue.FIELD valueOfJsonId(String jsonId)
-
-