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