Class FilterListIterator<E>
java.lang.Object
org.apache.commons.collections4.iterators.FilterListIterator<E>
- Type Parameters:
E
- the type of elements returned by this iterator.
- All Implemented Interfaces:
Iterator<E>
,ListIterator<E>
Decorates another
ListIterator
using a predicate to filter elements.
This iterator decorates the underlying iterator, only allowing through
those elements that match the specified Predicate
.
- Since:
- 2.0
-
Constructor Summary
ConstructorDescriptionConstructs a newFilterListIterator
that will not function untilsetListIterator
andsetPredicate
are invoked.FilterListIterator
(ListIterator<? extends E> iterator) Constructs a newFilterListIterator
that will not function untilsetPredicate
is invoked.FilterListIterator
(ListIterator<? extends E> iterator, Predicate<? super E> predicate) Constructs a newFilterListIterator
.FilterListIterator
(Predicate<? super E> predicate) Constructs a newFilterListIterator
that will not function untilsetListIterator
is invoked. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Not supported.ListIterator<? extends E>
Gets the iterator this iterator is using.Gets the predicate this iterator is using.boolean
hasNext()
boolean
next()
int
previous()
int
void
remove()
Not supported.void
Not supported.void
setListIterator
(ListIterator<? extends E> iterator) Sets the iterator for this iterator to use.void
setPredicate
(Predicate<? super E> 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
Methods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
FilterListIterator
public FilterListIterator()Constructs a newFilterListIterator
that will not function untilsetListIterator
andsetPredicate
are invoked. -
FilterListIterator
Constructs a newFilterListIterator
that will not function untilsetPredicate
is invoked.- Parameters:
iterator
- the iterator to use
-
FilterListIterator
Constructs a newFilterListIterator
.- Parameters:
iterator
- the iterator to usepredicate
- the predicate to use
-
FilterListIterator
Constructs a newFilterListIterator
that will not function untilsetListIterator
is invoked.- Parameters:
predicate
- the predicate to use.
-
-
Method Details
-
add
Not supported.- Specified by:
add
in interfaceListIterator<E>
- Parameters:
o
- the element to insert
-
getListIterator
Gets the iterator this iterator is using.- Returns:
- the iterator.
-
getPredicate
Gets the predicate this iterator is using.- Returns:
- the predicate.
-
hasNext
-
hasPrevious
- Specified by:
hasPrevious
in interfaceListIterator<E>
-
next
-
nextIndex
- Specified by:
nextIndex
in interfaceListIterator<E>
-
previous
- Specified by:
previous
in interfaceListIterator<E>
-
previousIndex
- Specified by:
previousIndex
in interfaceListIterator<E>
-
remove
Not supported. -
set
Not supported.- Specified by:
set
in interfaceListIterator<E>
- Parameters:
o
- the element with which to replace the last element returned bynext
orprevious
-
setListIterator
Sets the iterator for this iterator to use. If iteration has started, this effectively resets the iterator.- Parameters:
iterator
- the iterator to use
-
setPredicate
Sets the predicate this the iterator to use.- Parameters:
predicate
- the transformer to use
-