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