Package org.apache.commons.io.function
Interface IOSpliterator<T>
- Type Parameters:
T
- the type of elements returned by this IOSpliterator.
public interface IOSpliterator<T>
Like
Spliterator
but throws IOException
.- Since:
- 2.12.0
-
Method Summary
Modifier and TypeMethodDescriptionstatic <E> IOSpliterator<E>
adapt
(Spliterator<E> iterator) Adapts the given Spliterator as an IOSpliterator.default Spliterator<T>
default int
default long
default void
forEachRemaining
(IOConsumer<? super T> action) default IOComparator<? super T>
default long
default boolean
hasCharacteristics
(int characteristics) default boolean
tryAdvance
(IOConsumer<? super T> action) default IOSpliterator<T>
trySplit()
LikeSpliterator.trySplit()
.unwrap()
Unwraps this instance and returns the underlyingSpliterator
.
-
Method Details
-
adapt
Adapts the given Spliterator as an IOSpliterator.- Type Parameters:
E
- the type of the stream elements.- Parameters:
iterator
- The iterator to adapt- Returns:
- A new IOSpliterator
-
asSpliterator
- Returns:
- an
UncheckedIOException
Spliterator
.
-
characteristics
- Returns:
- a representation of characteristics
-
estimateSize
- Returns:
- the estimated size, or
Long.MAX_VALUE
if infinite, unknown, or too expensive to compute.
-
forEachRemaining
- Parameters:
action
- The action- Throws:
NullPointerException
- if the specified action is null
-
getComparator
- Returns:
- a Comparator, or
null
if the elements are sorted in the natural order. - Throws:
IllegalStateException
- if the spliterator does not report a characteristic ofSORTED
.
-
getExactSizeIfKnown
- Returns:
- the exact size, if known, else
-1
.
-
hasCharacteristics
- Parameters:
characteristics
- the characteristics to check for- Returns:
true
if all the specified characteristics are present, elsefalse
-
tryAdvance
- Parameters:
action
- The action- Returns:
false
if no remaining elements existed upon entry to this method, elsetrue
.- Throws:
NullPointerException
- if the specified action is null
-
trySplit
LikeSpliterator.trySplit()
.- Returns:
- a
Spliterator
covering some portion of the elements, ornull
if this spliterator cannot be split
-
unwrap
Spliterator<T> unwrap()Unwraps this instance and returns the underlyingSpliterator
.Implementations may not have anything to unwrap and that behavior is undefined for now.
- Returns:
- the underlying Spliterator.
-