public enum JMXMetricType extends java.lang.Enum<JMXMetricType>
| Enum Constant and Description |
|---|
INCREMENT_COUNT_PER_BEAN
This is the default.
|
SUM_ALL_BEANS
This will sum all beans matching the query together with a count of 1.
|
| Modifier and Type | Method and Description |
|---|---|
static JMXMetricType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JMXMetricType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JMXMetricType INCREMENT_COUNT_PER_BEAN
public static final JMXMetricType SUM_ALL_BEANS
public static JMXMetricType[] values()
for (JMXMetricType c : JMXMetricType.values()) System.out.println(c);
public static JMXMetricType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null