Package org.geotools.process.vector
Class AggregateProcess.Results
- Object
-
- Results
-
- Enclosing class:
- AggregateProcess
public static final class AggregateProcess.Results extends Object
The aggregate function results
-
-
Constructor Summary
Constructors Constructor Description Results(String aggregateAttribute, Set<AggregateProcess.AggregationFunction> functions, EnumMap<AggregateProcess.AggregationFunction,Number> results)
Results(String aggregateAttribute, Set<AggregateProcess.AggregationFunction> functions, List<String> groupByAttributes, List<Object[]> groupByResult)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAggregateAttribute()
Double
getArea()
Double
getAverage()
Long
getCount()
Set<AggregateProcess.AggregationFunction>
getFunctions()
List<String>
getGroupByAttributes()
List<Object[]>
getGroupByResult()
Double
getMax()
Double
getMedian()
Double
getMin()
EnumMap<AggregateProcess.AggregationFunction,Number>
getResults()
Double
getStandardDeviation()
Double
getSum()
-
-
-
Constructor Detail
-
Results
public Results(String aggregateAttribute, Set<AggregateProcess.AggregationFunction> functions, List<String> groupByAttributes, List<Object[]> groupByResult)
-
Results
public Results(String aggregateAttribute, Set<AggregateProcess.AggregationFunction> functions, EnumMap<AggregateProcess.AggregationFunction,Number> results)
-
-
Method Detail
-
getMin
public Double getMin()
-
getMax
public Double getMax()
-
getMedian
public Double getMedian()
-
getAverage
public Double getAverage()
-
getStandardDeviation
public Double getStandardDeviation()
-
getSum
public Double getSum()
-
getArea
public Double getArea()
-
getCount
public Long getCount()
-
getAggregateAttribute
public String getAggregateAttribute()
-
getFunctions
public Set<AggregateProcess.AggregationFunction> getFunctions()
-
getResults
public EnumMap<AggregateProcess.AggregationFunction,Number> getResults()
-
-