|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Objectorg.apache.commons.collections.iterators.FilterIterator
Decorates an iterator such that only elements matching a predicate filter are returned.
| Constructor Summary | |
FilterIterator()
Constructs a new FilterIterator that will not function
until setIterator is invoked. |
|
FilterIterator(Iterator iterator)
Constructs a new FilterIterator that will not function
until setPredicate is invoked. |
|
FilterIterator(Iterator iterator,
Predicate predicate)
Constructs a new FilterIterator that will use the
given iterator and predicate. |
|
| Method Summary | |
Iterator |
getIterator()
Gets the iterator this iterator is using. |
Predicate |
getPredicate()
Gets the predicate this iterator is using. |
boolean |
hasNext()
Returns true if the underlying iterator contains an object that matches the predicate. |
Object |
next()
Returns the next object that matches the predicate. |
void |
remove()
Removes from the underlying collection of the base iterator the last element returned by this iterator. |
void |
setIterator(Iterator iterator)
Sets the iterator for this iterator to use. |
void |
setPredicate(Predicate predicate)
Sets the predicate this the iterator to use. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public FilterIterator()
FilterIterator that will not function
until setIterator is invoked.
public FilterIterator(Iterator iterator)
FilterIterator that will not function
until setPredicate is invoked.
iterator - the iterator to use
public FilterIterator(Iterator iterator,
Predicate predicate)
FilterIterator that will use the
given iterator and predicate.
iterator - the iterator to usepredicate - the predicate to use| Method Detail |
public boolean hasNext()
hasNext in interface Iteratorpublic Object next()
next in interface IteratorNoSuchElementException - if there are no more elements that
match the predicatepublic void remove()
next() was called, but not after
hasNext(), because the hasNext() call
changes the base iterator.
remove in interface IteratorIllegalStateException - if hasNext() has already
been called.public Iterator getIterator()
public void setIterator(Iterator iterator)
iterator - the iterator to usepublic Predicate getPredicate()
public void setPredicate(Predicate predicate)
predicate - the transformer to use
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||