Enum AggregationMetric.Known
-
- All Implemented Interfaces:
public enum AggregationMetric.KnownEnum representing the known values for AggregationMetric.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AGGREGATION_METRIC_UNSPECIFIEDUnspecified aggregation metric.
AVERAGEAverage aggregation metric. Not supported for Pairwise metric.
MODEMode aggregation metric.
STANDARD_DEVIATIONStandard deviation aggregation metric. Not supported for pairwise metric.
VARIANCEVariance aggregation metric. Not supported for pairwise metric.
MINIMUMMinimum aggregation metric. Not supported for pairwise metric.
MAXIMUMMaximum aggregation metric. Not supported for pairwise metric.
MEDIANMedian aggregation metric. Not supported for pairwise metric.
PERCENTILE_P9090th percentile aggregation metric. Not supported for pairwise metric.
PERCENTILE_P9595th percentile aggregation metric. Not supported for pairwise metric.
PERCENTILE_P9999th percentile aggregation metric. Not supported for pairwise metric.
-
Method Summary
Modifier and Type Method Description static Array<AggregationMetric.Known>values()Returns an array containing the constants of this enum type, in the order they're declared. static AggregationMetric.KnownvalueOf(String name)Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<AggregationMetric.Known> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static AggregationMetric.Known valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-