| java.lang.Object org.geotools.feature.visitor.MinVisitor
MinVisitor | public class MinVisitor implements FeatureCalc(Code) | | Calculates the minimum value of an attribute.
author: Cory Horner, Refractions since: 2.2.M2 |
getExpression | public Expression getExpression()(Code) | | |
reset | public void reset()(Code) | | |
setValue | public void setValue(Object result)(Code) | | Overwrites the result stored by the visitor. This should only be used by
optimizations which will tell the visitor the answer rather than
visiting all features.
For 'min', the value stored is of type 'Comparable'.
Parameters: result - |
visit | public void visit(Feature feature)(Code) | | Visitor function, which looks at each feature and finds the minimum.
Parameters: feature - the feature to be visited |
|
|