Package org.geotools.feature.visitor
Class MedianVisitor
- Object
-
- MedianVisitor
-
- All Implemented Interfaces:
FeatureVisitor,FeatureAttributeVisitor,FeatureCalc
public class MedianVisitor extends Object implements FeatureCalc, FeatureAttributeVisitor
Calculates the median of an attribute in all features of a collection- Since:
- 2.2.M2
- Author:
- Cory Horner, Refractions
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMedianVisitor.MedianResult
-
Constructor Summary
Constructors Constructor Description MedianVisitor(int attributeTypeIndex, SimpleFeatureType type)MedianVisitor(String attributeTypeName)MedianVisitor(String attrName, SimpleFeatureType type)MedianVisitor(Expression expr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExpressiongetExpression()List<Expression>getExpressions()List of expressions used by visitor.ObjectgetMedian()Return the median of all features in the collectionCalcResultgetResult()Returns the result of the calculation as a handy object which can be merged and modified.Optional<List<Class>>getResultType(List<Class> inputTypes)Returns the expected output type given the input type.voidinit(SimpleFeatureCollection collection)voidreset()Reset the stored information about the median.voidsetValue(Comparable median)voidsetValue(List<Comparable> list)voidvisit(Feature feature)Visit the provided feature.voidvisit(SimpleFeature feature)
-
-
-
Constructor Detail
-
MedianVisitor
public MedianVisitor(String attributeTypeName)
-
MedianVisitor
public MedianVisitor(int attributeTypeIndex, SimpleFeatureType type) throws IllegalFilterException- Throws:
IllegalFilterException
-
MedianVisitor
public MedianVisitor(String attrName, SimpleFeatureType type) throws IllegalFilterException
- Throws:
IllegalFilterException
-
MedianVisitor
public MedianVisitor(Expression expr) throws IllegalFilterException
- Throws:
IllegalFilterException
-
-
Method Detail
-
init
public void init(SimpleFeatureCollection collection)
-
getExpressions
public List<Expression> getExpressions()
Description copied from interface:FeatureAttributeVisitorList of expressions used by visitor.- Specified by:
getExpressionsin interfaceFeatureAttributeVisitor
-
getResultType
public Optional<List<Class>> getResultType(List<Class> inputTypes)
Description copied from interface:FeatureAttributeVisitorReturns the expected output type given the input type.- Specified by:
getResultTypein interfaceFeatureAttributeVisitor- Parameters:
inputTypes- The type of the input expressions
-
visit
public void visit(SimpleFeature feature)
-
visit
public void visit(Feature feature)
Description copied from interface:FeatureVisitorVisit the provided feature.Please consult the documentation for the FeatureCollection you are visiting to learn more - the provided feature may be invalid, or read only.
- Specified by:
visitin interfaceFeatureVisitor
-
getExpression
public Expression getExpression()
-
getMedian
public Object getMedian()
Return the median of all features in the collection
-
reset
public void reset()
Reset the stored information about the median.
-
getResult
public CalcResult getResult()
Description copied from interface:FeatureCalcReturns the result of the calculation as a handy object which can be merged and modified.- Specified by:
getResultin interfaceFeatureCalc- Returns:
- the results of the calculation
-
setValue
public void setValue(List<Comparable> list)
-
setValue
public void setValue(Comparable median)
-
-