public enum GaugeAggregator extends Enum<GaugeAggregator>
Enum Constant and Description |
---|
MAX
Current values are aggregated by finding the
maximum of current values.
|
MIN
Current values are aggregated by finding the
minimum of current values.
|
SUM
Current values are aggregated by summation.
|
Modifier and Type | Method and Description |
---|---|
static GaugeAggregator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GaugeAggregator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GaugeAggregator SUM
public static final GaugeAggregator MIN
public static final GaugeAggregator MAX
public static GaugeAggregator[] values()
for (GaugeAggregator c : GaugeAggregator.values()) System.out.println(c);
public static GaugeAggregator 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 © 2016 Actian Corporation. All rights reserved.