Package com.sun.xml.xsom.impl.scd
Class Iterators.Filter<T>
- java.lang.Object
-
- com.sun.xml.xsom.impl.scd.Iterators.Filter<T>
-
- All Implemented Interfaces:
java.util.Iterator<T>
- Enclosing class:
- Iterators
public abstract static class Iterators.Filter<T> extends java.lang.Object
Filter out objects from another iterator.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
protected abstract boolean
matches(T value)
Return true to retain the value.T
next()
void
remove()
-
-
-
Constructor Detail
-
Filter
protected Filter(java.util.Iterator<? extends T> core)
-
-