Package org.geotools.process.vector
Class AggregateProcess.AggregateResultsConverterFactory
- Object
-
- AggregateResultsConverterFactory
-
- All Implemented Interfaces:
ConverterFactory
- Enclosing class:
- AggregateProcess
public static class AggregateProcess.AggregateResultsConverterFactory extends Object implements ConverterFactory
Converter factory that convertsAggregateProcess.Results
toFeatureCollection
. Currently, it only supports group by results, which are converted to aFeatureCollection
where each feature represents a group and contains the aggregated values as attributes. It's meant to be used in rendering transformations where one of the grouping attributes is a geometry, allowing the results to be rendered
-
-
Field Summary
-
Fields inherited from interface ConverterFactory
SAFE_CONVERSION
-
-
Constructor Summary
Constructors Constructor Description AggregateResultsConverterFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Converter
createConverter(Class<?> source, Class<?> target, Hints hints)
Creates aConverter
instance for converting one type of object to another.
-
-
-
Method Detail
-
createConverter
public Converter createConverter(Class<?> source, Class<?> target, Hints hints)
Description copied from interface:ConverterFactory
Creates aConverter
instance for converting one type of object to another.- Specified by:
createConverter
in interfaceConverterFactory
- Parameters:
source
- The type to convert from.target
- The type to convert to.hints
- Hints used to be used while creating a converter.- Returns:
- The converter, or
null
if one could not be found.
-
-