Uses of Interface
org.apache.commons.io.function.IOIterator
-
Packages that use IOIterator Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references. -
-
Uses of IOIterator in org.apache.commons.io.function
Classes in org.apache.commons.io.function that implement IOIterator Modifier and Type Class Description (package private) class
IOIteratorAdapter<E>
Adapts anIterator
as anIOIterator
.Fields in org.apache.commons.io.function declared as IOIterator Modifier and Type Field Description private IOIterator<E>
UncheckedIOIterator. delegate
Methods in org.apache.commons.io.function that return IOIterator Modifier and Type Method Description static <E> IOIterator<E>
IOIterator. adapt(java.util.Iterator<E> iterator)
Adapts the given Iterator as an IOIterator.default IOIterator<T>
IOBaseStream. iterator()
LikeBaseStream.iterator()
.Constructors in org.apache.commons.io.function with parameters of type IOIterator Constructor Description UncheckedIOIterator(IOIterator<E> delegate)
Constructs a new instance.
-