Package org.geotools.feature.visitor
Interface LimitingVisitor
- All Superinterfaces:
- FeatureVisitor
- All Known Implementing Classes:
- UniqueCountVisitor,- UniqueVisitor
A visitor that can limit the features that can be visited (for example to implement startOffset, maxFeatures
 pagination).
- Since:
- 12.x
- Author:
- Mauro Bartolomeoli (mauro.bartolomeoli at geo-solutions.it)
- See Also:
- 
Method SummaryModifier and TypeMethodDescriptionintReturns maxFeatures (max # of elements to return)intReturns startIndex (first element to return)booleanChecks if the visitor has limits.Methods inherited from interface FeatureVisitorvisit
- 
Method Details- 
hasLimitsboolean hasLimits()Checks if the visitor has limits.- Returns:
- true if the visitor has limits
 
- 
getStartIndexint getStartIndex()Returns startIndex (first element to return)
- 
getMaxFeaturesint getMaxFeatures()Returns maxFeatures (max # of elements to return)
 
-