public static enum Metric.Threads extends Enum<Metric.Threads> implements Metric.Value
Enum Constant and Description |
---|
AVERAGE_EXCLUSIVE_TIME |
AVERAGE_RESPONSE_TIME |
AVERAGE_VALUE |
CALL_COUNT |
CALLS_PER_MINUTE |
MAX_RESPONSE_TIME |
MIN_RESPONSE_TIME |
REQUESTS_PER_MINUTE |
STANDARD_DEVIATION |
TOTAL_CALL_TIME_PER_MINUTE |
Modifier and Type | Method and Description |
---|---|
String |
value() |
static Metric.Threads |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Metric.Threads[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Metric.Threads AVERAGE_RESPONSE_TIME
public static final Metric.Threads CALLS_PER_MINUTE
public static final Metric.Threads CALL_COUNT
public static final Metric.Threads MIN_RESPONSE_TIME
public static final Metric.Threads MAX_RESPONSE_TIME
public static final Metric.Threads AVERAGE_EXCLUSIVE_TIME
public static final Metric.Threads AVERAGE_VALUE
public static final Metric.Threads TOTAL_CALL_TIME_PER_MINUTE
public static final Metric.Threads REQUESTS_PER_MINUTE
public static final Metric.Threads STANDARD_DEVIATION
public static Metric.Threads[] values()
for (Metric.Threads c : Metric.Threads.values()) System.out.println(c);
public static Metric.Threads valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
value
in interface Metric.Value
Copyright © 2018. All rights reserved.