Java org.apache.commons.collections.iterators FilterIterator fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.collections.iterators FilterIterator fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.collections.iterators FilterIterator.

The text is from its open source code.

Subclass

org.apache.commons.collections.iterators.FilterIterator has subclasses.
Click this link to see all its subclasses.

Constructor

FilterIterator(Iterator iterator, Predicate predicate)
Constructs a new FilterIterator that will use the given iterator and predicate.
FilterIterator(Iterator iterator)
Constructs a new FilterIterator that will not function until #setPredicate(Predicate) setPredicate is invoked.

Method

IteratorgetIterator()
Gets the iterator this iterator is using.
voidsetPredicate(Predicate predicate)
Sets the predicate this the iterator to use.