RemoteStream<Double> |
RemoteDoubleStream.boxed() |
Returns a Stream consisting of the elements of this stream,
boxed to Double .
|
RemoteStream<Integer> |
RemoteIntStream.boxed() |
Returns a Stream consisting of the elements of this stream, each
boxed to an Integer .
|
RemoteStream<Long> |
RemoteLongStream.boxed() |
Returns a Stream consisting of the elements of this stream,
each boxed to a Long .
|
static <K,V> RemoteStream<InvocableMap.Entry<K,V>> |
RemoteStream.entrySet(InvocableMap<K,V> map) |
|
default RemoteStream<T> |
RemoteStream.filter(Remote.Predicate<? super T> predicate) |
Returns a stream consisting of the elements of this stream that match the
given predicate.
|
RemoteStream<T> |
RemoteStream.filter(Predicate<? super T> predicate) |
Returns a stream consisting of the elements of this stream that match the
given predicate.
|
default <R> RemoteStream<R> |
RemoteStream.flatMap(Remote.Function<? super T,? extends Stream<? extends R>> mapper) |
Returns a stream consisting of the results of replacing each element of
this stream with the contents of a mapped stream produced by applying
the provided mapping function to each element.
|
<R> RemoteStream<R> |
RemoteStream.flatMap(Function<? super T,? extends Stream<? extends R>> mapper) |
Returns a stream consisting of the results of replacing each element of
this stream with the contents of a mapped stream produced by applying
the provided mapping function to each element.
|
static <K,V> RemoteStream<K> |
RemoteStream.keySet(InvocableMap<K,V> map) |
|
default <R> RemoteStream<R> |
RemoteStream.map(Remote.Function<? super T,? extends R> mapper) |
Returns a stream consisting of the results of applying the given function
to the elements of this stream.
|
default <R> RemoteStream<R> |
RemoteStream.map(ValueExtractor<? super T,? extends R> mapper) |
Returns a stream consisting of the results of applying the given extractor
to the elements of this stream.
|
<R> RemoteStream<R> |
RemoteStream.map(Function<? super T,? extends R> mapper) |
Returns a stream consisting of the results of applying the given function
to the elements of this stream.
|
default <U> RemoteStream<U> |
RemoteDoubleStream.mapToObj(Remote.DoubleFunction<? extends U> mapper) |
Returns an object-valued Stream consisting of the results of
applying the given function to the elements of this stream.
|
<U> RemoteStream<U> |
RemoteDoubleStream.mapToObj(DoubleFunction<? extends U> mapper) |
Returns an object-valued Stream consisting of the results of
applying the given function to the elements of this stream.
|
default <U> RemoteStream<U> |
RemoteIntStream.mapToObj(Remote.IntFunction<? extends U> mapper) |
Returns an object-valued Stream consisting of the results of
applying the given function to the elements of this stream.
|
<U> RemoteStream<U> |
RemoteIntStream.mapToObj(IntFunction<? extends U> mapper) |
Returns an object-valued Stream consisting of the results of
applying the given function to the elements of this stream.
|
default <U> RemoteStream<U> |
RemoteLongStream.mapToObj(Remote.LongFunction<? extends U> mapper) |
Returns an object-valued Stream consisting of the results of
applying the given function to the elements of this stream.
|
<U> RemoteStream<U> |
RemoteLongStream.mapToObj(LongFunction<? extends U> mapper) |
Returns an object-valued Stream consisting of the results of
applying the given function to the elements of this stream.
|
RemoteStream<T> |
RemoteStream.parallel() |
Returns an equivalent stream that is parallel.
|
default RemoteStream<T> |
RemoteStream.peek(Remote.Consumer<? super T> action) |
Returns a stream consisting of the elements of this stream, additionally
performing the provided action on each element as elements are consumed
from the resulting stream.
|
RemoteStream<T> |
RemoteStream.peek(Consumer<? super T> action) |
Returns a stream consisting of the elements of this stream, additionally
performing the provided action on each element as elements are consumed
from the resulting stream.
|
RemoteStream<T> |
RemoteStream.sequential() |
Returns an equivalent stream that is sequential.
|
RemoteStream<T> |
RemoteStream.sorted() |
Returns a stream consisting of the elements of this stream, sorted
according to natural order.
|
default RemoteStream<T> |
RemoteStream.sorted(Remote.Comparator<? super T> comparator) |
Returns a stream consisting of the elements of this stream, sorted
according to the provided Comparator .
|
default RemoteStream<T> |
RemoteStream.sorted(Remote.Comparator<? super T> comparator,
boolean fInverse) |
Returns a stream consisting of the elements of this stream, sorted
according to the provided Comparator .
|
default <U> RemoteStream<T> |
RemoteStream.sorted(ValueExtractor<? super U,? extends Comparable> extractor) |
Returns a stream consisting of the elements of this stream, sorted
according to attribute extracted by the provided ValueExtractor .
|
default <U> RemoteStream<T> |
RemoteStream.sorted(ValueExtractor<? super U,? extends Comparable> extractor,
boolean fInverse) |
Returns a stream consisting of the elements of this stream, sorted
according to attribute extracted by the provided ValueExtractor .
|
RemoteStream<T> |
RemoteStream.sorted(Comparator<? super T> comparator) |
Returns a stream consisting of the elements of this stream, sorted
according to the provided Comparator .
|
RemoteStream<T> |
RemoteStream.unordered() |
Returns an equivalent stream that is unordered.
|
static <K,V> RemoteStream<V> |
RemoteStream.values(InvocableMap<K,V> map) |
|