Package org.geotools.feature.visitor
Class CountVisitor
Object
CountVisitor
- All Implemented Interfaces:
FeatureVisitor
,FeatureCalc
Determines the number of features in the collection
- Since:
- 2.2.M2
- Author:
- Cory Horner, Refractions
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
getCount()
Returns the result of the calculation as a handy object which can be merged and modified.void
init
(SimpleFeatureCollection collection) void
reset()
void
setValue
(int count) void
Visit the provided feature.void
visit
(SimpleFeature feature)
-
Constructor Details
-
CountVisitor
public CountVisitor()
-
-
Method Details
-
init
-
visit
-
visit
Description copied from interface:FeatureVisitor
Visit 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:
visit
in interfaceFeatureVisitor
-
getCount
public int getCount() -
setValue
public void setValue(int count) -
reset
public void reset() -
getResult
Description copied from interface:FeatureCalc
Returns the result of the calculation as a handy object which can be merged and modified.- Specified by:
getResult
in interfaceFeatureCalc
- Returns:
- the results of the calculation
-