Modifier and Type | Method and Description |
---|---|
default TStream<E> |
TCollection.stream() |
static <T> TStream<T> |
TArrays.stream(T[] array) |
static <T> TStream<T> |
TArrays.stream(T[] array,
int startInclusive,
int endExclusive) |
Modifier and Type | Method and Description |
---|---|
TStream<Long> |
TLongStream.boxed() |
TStream<Integer> |
TIntStream.boxed() |
TStream<Double> |
TDoubleStream.boxed() |
TStream<T> |
TStream.Builder.build() |
static <T> TStream<T> |
TStream.concat(TStream<? extends T> a,
TStream<? extends T> b) |
TStream<T> |
TStream.distinct() |
static <T> TStream<T> |
TStream.empty() |
TStream<T> |
TStream.filter(Predicate<? super T> predicate) |
<R> TStream<R> |
TStream.flatMap(Function<? super T,? extends TStream<? extends R>> mapper) |
static <T> TStream<T> |
TStream.generate(Supplier<T> s) |
static <T> TStream<T> |
TStream.iterate(T seed,
UnaryOperator<T> f) |
TStream<T> |
TStream.limit(long maxSize) |
<R> TStream<R> |
TStream.map(Function<? super T,? extends R> mapper) |
<U> TStream<U> |
TDoubleStream.mapToObj(DoubleFunction<? extends U> mapper) |
<U> TStream<U> |
TIntStream.mapToObj(IntFunction<? extends U> mapper) |
<U> TStream<U> |
TLongStream.mapToObj(LongFunction<? extends U> mapper) |
static <T> TStream<T> |
TStream.of(T... values) |
static <T> TStream<T> |
TStream.of(T t) |
TStream<T> |
TStream.peek(Consumer<? super T> action) |
TStream<T> |
TStream.skip(long n) |
TStream<T> |
TStream.sorted() |
TStream<T> |
TStream.sorted(Comparator<? super T> comparator) |
static <T> TStream<T> |
TStreamSupport.stream(Spliterator<T> spliterator,
boolean parallel) |
Modifier and Type | Method and Description |
---|---|
static <T> TStream<T> |
TStream.concat(TStream<? extends T> a,
TStream<? extends T> b) |
static <T> TStream<T> |
TStream.concat(TStream<? extends T> a,
TStream<? extends T> b) |
Modifier and Type | Method and Description |
---|---|
<R> TStream<R> |
TStream.flatMap(Function<? super T,? extends TStream<? extends R>> mapper) |
Modifier and Type | Class and Description |
---|---|
class |
TBoxedDoubleStream |
Modifier and Type | Method and Description |
---|---|
TStream<Double> |
TSimpleDoubleStreamImpl.boxed() |
<U> TStream<U> |
TSimpleDoubleStreamImpl.mapToObj(DoubleFunction<? extends U> mapper) |
Modifier and Type | Class and Description |
---|---|
class |
TArrayStreamImpl<T> |
class |
TCloseHandlingStream<T> |
class |
TDistinctStreamImpl<T> |
class |
TEmptyStreamImpl<T> |
class |
TFilteringStreamImpl<T> |
class |
TFlatMappingStreamImpl<T,S> |
class |
TGenerateStream<T> |
class |
TGenericConcatStream<T> |
class |
TIterateStream<T> |
class |
TLimitingStreamImpl<T> |
class |
TMappingStreamImpl<T,S> |
class |
TPeekingStreamImpl<T> |
class |
TSimpleStreamImpl<T> |
class |
TSingleStreamImpl<T> |
class |
TSkippingStreamImpl<T> |
class |
TSortedStreamImpl<T> |
class |
TSpecializedConcatStream<T> |
class |
TStreamOverSpliterator<T> |
class |
TWrappingStreamImpl<T,S> |
Modifier and Type | Method and Description |
---|---|
TStream<T> |
TStreamBuilder.build() |
TStream<T> |
TSimpleStreamImpl.distinct() |
TStream<T> |
TSimpleStreamImpl.filter(Predicate<? super T> predicate) |
<R> TStream<R> |
TSimpleStreamImpl.flatMap(Function<? super T,? extends TStream<? extends R>> mapper) |
TStream<T> |
TSimpleStreamImpl.limit(long maxSize) |
<R> TStream<R> |
TSimpleStreamImpl.map(Function<? super T,? extends R> mapper) |
TStream<T> |
TSimpleStreamImpl.onClose(Runnable closeHandler) |
TStream<T> |
TSimpleStreamImpl.parallel() |
TStream<T> |
TSimpleStreamImpl.peek(Consumer<? super T> action) |
TStream<T> |
TSimpleStreamImpl.sequential() |
TStream<T> |
TSimpleStreamImpl.skip(long n) |
TStream<T> |
TSimpleStreamImpl.sorted() |
TStream<T> |
TSimpleStreamImpl.sorted(Comparator<? super T> comparator) |
TStream<T> |
TSimpleStreamImpl.unordered() |
Modifier and Type | Method and Description |
---|---|
<R> TStream<R> |
TSimpleStreamImpl.flatMap(Function<? super T,? extends TStream<? extends R>> mapper) |
Constructor and Description |
---|
TGenericConcatStream(TStream<? extends T> first,
TStream<? extends T> second) |
TGenericConcatStream(TStream<? extends T> first,
TStream<? extends T> second) |
Constructor and Description |
---|
TFlatMappingStreamImpl(TSimpleStreamImpl<S> sourceStream,
Function<? super S,? extends TStream<? extends T>> mapper) |
Modifier and Type | Class and Description |
---|---|
class |
TBoxedIntStream |
class |
TMappingToObjStreamImpl<T> |
Modifier and Type | Method and Description |
---|---|
TStream<Integer> |
TSimpleIntStreamImpl.boxed() |
<U> TStream<U> |
TSimpleIntStreamImpl.mapToObj(IntFunction<? extends U> mapper) |
Modifier and Type | Class and Description |
---|---|
class |
TBoxedLongStream |
Modifier and Type | Method and Description |
---|---|
TStream<Long> |
TSimpleLongStreamImpl.boxed() |
<U> TStream<U> |
TSimpleLongStreamImpl.mapToObj(LongFunction<? extends U> mapper) |
Copyright © 2019. All rights reserved.