T - the type of the stream elements.S - the type of the IO stream extending IOBaseStream.B - the type of the stream extending BaseStream.final class UncheckedIOBaseStream<T,S extends IOBaseStream<T,S,B>,B extends java.util.stream.BaseStream<T,B>> extends Object implements java.util.stream.BaseStream<T,B>
BaseStream for a IOBaseStream that throws UncheckedIOException instead of
IOException.
Keep package-private for now.| Constructor and Description |
|---|
UncheckedIOBaseStream(S delegate) |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
boolean |
isParallel() |
Iterator<T> |
iterator() |
B |
onClose(Runnable closeHandler) |
B |
parallel() |
B |
sequential() |
Spliterator<T> |
spliterator() |
B |
unordered() |
UncheckedIOBaseStream(S delegate)
public void close()
close in interface AutoCloseableclose in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>public boolean isParallel()
isParallel in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>public Iterator<T> iterator()
iterator in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>public B onClose(Runnable closeHandler)
onClose in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>public B parallel()
parallel in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>public B sequential()
sequential in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>public Spliterator<T> spliterator()
spliterator in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>public B unordered()
unordered in interface java.util.stream.BaseStream<T,B extends java.util.stream.BaseStream<T,B>>