Interface Filterator<T>
- All Superinterfaces:
Iterator<T>
- All Known Implementing Classes:
AbstractFlowScanner
,DepthFirstScanner
,ForkScanner
,LinearBlockHoppingScanner
,LinearScanner
Iterator that may be navigated through a filtered wrapper.
As a rule, assume that returned Filterators wrap an iterator and pass calls to it. Thus the iterator position will change if next() is called on the filtered versions. Note also: you may filter a filterator, if needed.
- Author:
- Sam Van Oort
-
Method Summary
Modifier and TypeMethodDescriptionReturns a filtered view of the iterator, which calls the iterator until matches are foundMethods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
-
Method Details
-
filter
Returns a filtered view of the iterator, which calls the iterator until matches are found
-