- java.lang.Object
-
- xyz.cofe.iter.FilterIterator<T>
-
-
Constructor Summary
Constructors Constructor Description FilterIterator(Predicate<T> predicate, Iterator<T> iterator)Конструктор
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidfindNext()Поиск следующего элементаbooleanhasNext()Есть элементы?Tnext()Получить элемент и перейти к следующемуvoidremove()Удалить проччитанный из коллекции (Не поддерживаеться)-
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
-
-
-
-
Method Detail
-
findNext
protected void findNext()
Поиск следующего элемента
-
hasNext
public boolean hasNext()
Есть элементы?
-
next
public T next()
Получить элемент и перейти к следующему
-
-