DATA - the data type of the stream.public interface IStream<DATA> extends ExtensibleStream<DATA>
Stream.Builder<T>| Modifier and Type | Method and Description |
|---|---|
default IStream<DATA> |
concatWith(Collection<DATA> tail) |
default IStream<DATA> |
concatWith(DATA... tails) |
default IStream<DATA> |
concatWith(Stream<DATA> tail) |
static <D> IStream<D> |
empty() |
static <D> IStream<D> |
forArray(D... values) |
static <D> IStream<D> |
forCollection(Collection<D> values) |
static <D> IStream<D> |
from(Collection<D> values) |
static <D> IStream<D> |
of(D... values) |
default List<DATA> |
toList() |
allMatch, anyMatch, close, collect, collect, count, distinct, filter, findAny, findFirst, flatMap, flatMapToDouble, flatMapToInt, flatMapToLong, forEach, forEachOrdered, isParallel, iterator, limit, map, mapToDouble, mapToInt, mapToLong, max, min, noneMatch, onClose, parallel, peek, reduce, reduce, reduce, sequential, skip, sorted, sorted, spliterator, stream, toArray, toArray, unordered@SafeVarargs static <D> IStream<D> of(D... values)
static <D> IStream<D> from(Collection<D> values)
@SafeVarargs static <D> IStream<D> forArray(D... values)
static <D> IStream<D> forCollection(Collection<D> values)
default IStream<DATA> concatWith(Collection<DATA> tail)
Copyright © 2023 nawaman.net. All rights reserved.