public static enum CountProcess.AggregationFunction extends Enum<CountProcess.AggregationFunction>
Enum Constant and Description |
---|
Average |
Max |
Median |
Min |
StdDev |
Sum |
Modifier and Type | Method and Description |
---|---|
static CountProcess.AggregationFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountProcess.AggregationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountProcess.AggregationFunction Average
public static final CountProcess.AggregationFunction Max
public static final CountProcess.AggregationFunction Median
public static final CountProcess.AggregationFunction Min
public static final CountProcess.AggregationFunction StdDev
public static final CountProcess.AggregationFunction Sum
public static CountProcess.AggregationFunction[] values()
for (CountProcess.AggregationFunction c : CountProcess.AggregationFunction.values()) System.out.println(c);
public static CountProcess.AggregationFunction 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 © 1996–2019 Geotools. All rights reserved.