public static enum Metric.WebTransaction extends Enum<Metric.WebTransaction> implements Metric.Value
Enum Constant and Description |
---|
AVERAGE_CALL_TIME |
AVERAGE_RESPONSE_TIME |
CALL_COUNT |
MAX_CALL_TIME |
MIN_CALL_TIME |
REQUESTS_PER_MINUTE |
STANDARD_DEVIATION |
THROUGHPUT |
TOTAL_CALL_TIME |
Modifier and Type | Method and Description |
---|---|
String |
value() |
static Metric.WebTransaction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Metric.WebTransaction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Metric.WebTransaction AVERAGE_CALL_TIME
public static final Metric.WebTransaction AVERAGE_RESPONSE_TIME
public static final Metric.WebTransaction REQUESTS_PER_MINUTE
public static final Metric.WebTransaction CALL_COUNT
public static final Metric.WebTransaction MIN_CALL_TIME
public static final Metric.WebTransaction MAX_CALL_TIME
public static final Metric.WebTransaction TOTAL_CALL_TIME
public static final Metric.WebTransaction THROUGHPUT
public static final Metric.WebTransaction STANDARD_DEVIATION
public static Metric.WebTransaction[] values()
for (Metric.WebTransaction c : Metric.WebTransaction.values()) System.out.println(c);
public static Metric.WebTransaction 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.