public enum ExpandedMetric extends Enum<ExpandedMetric>
| Enum Constant and Description |
|---|
COUNT |
MEDIAN |
PCT_75 |
PCT_95 |
PCT_98 |
PCT_99 |
PCT_999 |
RATE_1_MINUTE |
RATE_15_MINUTE |
RATE_5_MINUTE |
RATE_MEAN |
| Modifier and Type | Method and Description |
|---|---|
String |
buildMetricName(String metric) |
static ExpandedMetric |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpandedMetric[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpandedMetric MEDIAN
public static final ExpandedMetric PCT_75
public static final ExpandedMetric PCT_95
public static final ExpandedMetric PCT_98
public static final ExpandedMetric PCT_99
public static final ExpandedMetric PCT_999
public static final ExpandedMetric COUNT
public static final ExpandedMetric RATE_MEAN
public static final ExpandedMetric RATE_1_MINUTE
public static final ExpandedMetric RATE_5_MINUTE
public static final ExpandedMetric RATE_15_MINUTE
public static ExpandedMetric[] values()
for (ExpandedMetric c : ExpandedMetric.values()) System.out.println(c);
public static ExpandedMetric 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 © 2017. All Rights Reserved.