public enum RangeAggregator extends Enum<RangeAggregator>
Enum Constant and Description |
---|
SUM
The aggregate low value is computed to be the sum of the low values.
|
WIDEST
The aggregate low value is computed to be the min of the low values.
|
Modifier and Type | Method and Description |
---|---|
static RangeAggregator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeAggregator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeAggregator SUM
public static final RangeAggregator WIDEST
public static RangeAggregator[] values()
for (RangeAggregator c : RangeAggregator.values()) System.out.println(c);
public static RangeAggregator 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.