public enum MetricFact extends Enum<MetricFact>
| Enum Constant and Description |
|---|
ALL |
AVG |
COUNT |
DURATION |
M1_AVG |
M15_AVG |
M5_AVG |
MAX |
MEDIAN |
MIN |
P75_Q |
P95_Q |
P98_Q |
P99_Q |
P999_Q |
STD_DEV |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static MetricFact |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetricFact[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricFact ALL
public static final MetricFact COUNT
public static final MetricFact MIN
public static final MetricFact MAX
public static final MetricFact SUM
public static final MetricFact AVG
public static final MetricFact MEDIAN
public static final MetricFact STD_DEV
public static final MetricFact M1_AVG
public static final MetricFact M5_AVG
public static final MetricFact M15_AVG
public static final MetricFact P75_Q
public static final MetricFact P95_Q
public static final MetricFact P98_Q
public static final MetricFact P99_Q
public static final MetricFact P999_Q
public static final MetricFact DURATION
public static MetricFact[] values()
for (MetricFact c : MetricFact.values()) System.out.println(c);
public static MetricFact 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 nullCopyright © 2013. All Rights Reserved.