Enum StatQueue.OPERATION
- java.lang.Object
-
- java.lang.Enum<StatQueue.OPERATION>
-
- org.apache.activemq.artemis.cli.commands.queue.StatQueue.OPERATION
-
- All Implemented Interfaces:
Serializable,Comparable<StatQueue.OPERATION>
- Enclosing class:
- StatQueue
public static enum StatQueue.OPERATION extends Enum<StatQueue.OPERATION>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTAINSEQUALSGREATER_THANLESS_THANNOT_CONTAINS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StatQueue.OPERATIONvalueOf(String name)Returns the enum constant of this type with the specified name.static StatQueue.OPERATION[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTAINS
public static final StatQueue.OPERATION CONTAINS
-
NOT_CONTAINS
public static final StatQueue.OPERATION NOT_CONTAINS
-
EQUALS
public static final StatQueue.OPERATION EQUALS
-
GREATER_THAN
public static final StatQueue.OPERATION GREATER_THAN
-
LESS_THAN
public static final StatQueue.OPERATION LESS_THAN
-
-
Method Detail
-
values
public static StatQueue.OPERATION[] 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.OPERATION c : StatQueue.OPERATION.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.OPERATION 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
-
-