| Modifier and Type | Method and Description |
|---|---|
ExtendedStream<T> |
ExtendedStream.distinct() |
ExtendedStream<T> |
ExtendedStream.filter(Predicate<? super T> predicate) |
<R> ExtendedStream<R> |
ExtendedStream.flatMap(Function<? super T,? extends Stream<? extends R>> mapper) |
ExtendedStream<T> |
ExtendedStream.limit(long maxSize) |
<R> ExtendedStream<R> |
ExtendedStream.map(Function<? super T,? extends R> mapper) |
static <T> ExtendedStream<T> |
ExtendedStream.of(Stream<T> stream) |
ExtendedStream<T> |
ExtendedStream.onClose(Runnable closeHandler) |
ExtendedStream<T> |
ExtendedStream.parallel() |
ExtendedStream<T> |
ExtendedStream.peek(Consumer<? super T> action) |
ExtendedStream<T> |
ExtendedStream.sequential() |
ExtendedStream<T> |
ExtendedStream.skip(long n) |
ExtendedStream<T> |
ExtendedStream.sorted() |
ExtendedStream<T> |
ExtendedStream.sorted(Comparator<? super T> comparator) |
static <T> ExtendedStream<T> |
Streams.stream(Collection<T> collection) |
static <T> ExtendedStream<T> |
Streams.stream(Stream<T> stream) |
ExtendedStream<T> |
ExtendedStream.unordered() |
Copyright © 2014–2015. All rights reserved.