borland.jbcl Packages borland.jbcl Class Hierarchy borland.jbcl.model
java.lang.Object +----borland.jbcl.model.FilteredInputIterator
Constructors Properties Methods
Implements InputIterator, Cloneable, Enumeration
The FilteredInputIterator class is an an abstract class that implements the InputIterator interface. Only the data contained in the specified input iterator is included in the iteration.
public FilteredInputIterator(COM.objectspace.jgl.InputIterator slave)Constructs a FilteredInputIterator object using the specified input iterator.
Parameters:
public Object getNext()Returns the next Object in the iteration.
public boolean equals(COM.objectspace.jgl.InputIterator that)Returns true if the specified input iterator is equal to the FilteredInputIterator.
Parameters:
protected Object getNextMatching()Returns the next matching object.
protected abstract boolean includeObject(java.lang.Object o)Used by the getNextMatching() method. If includeObject() returns true, getNextMatching() includes the object in the iteration.