@Deprecated @Beta public static final class ExceptionalStream.Seq extends Object
ExceptionalStream}
<<<<<<< .working | Modifier and Type | Method and Description |
|---|---|
static <T> ExceptionalStream<T,RuntimeException> |
concat(Collection<? extends T>... a)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
concat(T[]... a)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
empty()
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
from(Throwables.Supplier<ExceptionalStream<? extends T,? extends RuntimeException>,RuntimeException> supplier)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
generate(Throwables.Supplier<T,RuntimeException> supplier)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
iterate(Throwables.BooleanSupplier<? extends RuntimeException> hasNext,
Throwables.Supplier<? extends T,RuntimeException> next)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
iterate(T init,
Throwables.BooleanSupplier<? extends RuntimeException> hasNext,
Throwables.UnaryOperator<T,? extends RuntimeException> f)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
iterate(T init,
Throwables.Predicate<? super T,RuntimeException> hasNext,
Throwables.UnaryOperator<T,RuntimeException> f)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
iterate(T init,
Throwables.UnaryOperator<T,RuntimeException> f)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
just(T e)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
merge(Collection<? extends T> a,
Collection<? extends T> b,
Collection<? extends T> c,
Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
merge(Collection<? extends T> a,
Collection<? extends T> b,
Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
merge(Iterator<? extends T> a,
Iterator<? extends T> b,
Iterator<? extends T> c,
Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
merge(Iterator<? extends T> a,
Iterator<? extends T> b,
Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
merge(T[] a,
T[] b,
T[] c,
Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
merge(T[] a,
T[] b,
Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
of(Collection<? extends T> c)
Deprecated.
|
static ExceptionalStream<Double,RuntimeException> |
of(double[] a)
Deprecated.
|
static ExceptionalStream<Integer,RuntimeException> |
of(int[] a)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
of(Iterable<? extends T> iterable)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
of(Iterator<? extends T> iter)
Deprecated.
|
static ExceptionalStream<Long,RuntimeException> |
of(long[] a)
Deprecated.
|
static <K,V> ExceptionalStream<Map.Entry<K,V>,RuntimeException> |
of(Map<K,V> m)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
of(Optional<T> op)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
of(T... a)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
of(Throwables.Supplier<Collection<? extends T>,RuntimeException> supplier)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
of(u.Optional<T> op)
Deprecated.
|
static <K> ExceptionalStream<K,RuntimeException> |
ofKeys(Map<K,?> map)
Deprecated.
|
static <K,V> ExceptionalStream<K,RuntimeException> |
ofKeys(Map<K,V> map,
Throwables.BiPredicate<? super K,? super V,RuntimeException> filter)
Deprecated.
|
static <K,V> ExceptionalStream<K,RuntimeException> |
ofKeys(Map<K,V> map,
Throwables.Predicate<? super V,RuntimeException> valueFilter)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
ofNullable(T e)
Deprecated.
|
static <V> ExceptionalStream<V,RuntimeException> |
ofValues(Map<?,V> map)
Deprecated.
|
static <K,V> ExceptionalStream<V,RuntimeException> |
ofValues(Map<K,V> map,
Throwables.BiPredicate<? super K,? super V,RuntimeException> filter)
Deprecated.
|
static <K,V> ExceptionalStream<V,RuntimeException> |
ofValues(Map<K,V> map,
Throwables.Predicate<? super K,RuntimeException> keyFilter)
Deprecated.
|
static <T> ExceptionalStream<T,RuntimeException> |
repeat(T element,
long n)
Deprecated.
|
static <A,B,T> ExceptionalStream<T,RuntimeException> |
zip(A[] a,
B[] b,
A valueForNoneA,
B valueForNoneB,
Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,C,T> ExceptionalStream<T,RuntimeException> |
zip(A[] a,
B[] b,
C[] c,
A valueForNoneA,
B valueForNoneB,
C valueForNoneC,
Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,C,T> ExceptionalStream<T,RuntimeException> |
zip(A[] a,
B[] b,
C[] c,
Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,T> ExceptionalStream<T,RuntimeException> |
zip(A[] a,
B[] b,
Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,T> ExceptionalStream<T,RuntimeException> |
zip(Collection<? extends A> a,
Collection<? extends B> b,
A valueForNoneA,
B valueForNoneB,
Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,C,T> ExceptionalStream<T,RuntimeException> |
zip(Collection<? extends A> a,
Collection<? extends B> b,
Collection<? extends C> c,
A valueForNoneA,
B valueForNoneB,
C valueForNoneC,
Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,C,T> ExceptionalStream<T,RuntimeException> |
zip(Collection<? extends A> a,
Collection<? extends B> b,
Collection<? extends C> c,
Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,T> ExceptionalStream<T,RuntimeException> |
zip(Collection<? extends A> a,
Collection<? extends B> b,
Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,T> ExceptionalStream<T,RuntimeException> |
zip(Iterator<? extends A> a,
Iterator<? extends B> b,
A valueForNoneA,
B valueForNoneB,
Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,C,T> ExceptionalStream<T,RuntimeException> |
zip(Iterator<? extends A> a,
Iterator<? extends B> b,
Iterator<? extends C> c,
A valueForNoneA,
B valueForNoneB,
C valueForNoneC,
Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,C,T> ExceptionalStream<T,RuntimeException> |
zip(Iterator<? extends A> a,
Iterator<? extends B> b,
Iterator<? extends C> c,
Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
Deprecated.
|
static <A,B,T> ExceptionalStream<T,RuntimeException> |
zip(Iterator<? extends A> a,
Iterator<? extends B> b,
Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
Deprecated.
|
public static <T> ExceptionalStream<T,RuntimeException> empty()
public static <T> ExceptionalStream<T,RuntimeException> just(T e)
public static <T> ExceptionalStream<T,RuntimeException> ofNullable(T e)
public static <T> ExceptionalStream<T,RuntimeException> of(T... a)
public static <T> ExceptionalStream<T,RuntimeException> of(Collection<? extends T> c)
public static <T> ExceptionalStream<T,RuntimeException> of(Iterator<? extends T> iter)
public static <T> ExceptionalStream<T,RuntimeException> of(Iterable<? extends T> iterable)
public static <K,V> ExceptionalStream<Map.Entry<K,V>,RuntimeException> of(Map<K,V> m)
public static ExceptionalStream<Integer,RuntimeException> of(int[] a)
public static ExceptionalStream<Long,RuntimeException> of(long[] a)
public static ExceptionalStream<Double,RuntimeException> of(double[] a)
public static <T> ExceptionalStream<T,RuntimeException> of(u.Optional<T> op)
public static <T> ExceptionalStream<T,RuntimeException> of(Optional<T> op)
public static <T> ExceptionalStream<T,RuntimeException> of(Throwables.Supplier<Collection<? extends T>,RuntimeException> supplier)
public static <T> ExceptionalStream<T,RuntimeException> from(Throwables.Supplier<ExceptionalStream<? extends T,? extends RuntimeException>,RuntimeException> supplier)
public static <K> ExceptionalStream<K,RuntimeException> ofKeys(Map<K,?> map)
public static <K,V> ExceptionalStream<K,RuntimeException> ofKeys(Map<K,V> map, Throwables.Predicate<? super V,RuntimeException> valueFilter)
public static <K,V> ExceptionalStream<K,RuntimeException> ofKeys(Map<K,V> map, Throwables.BiPredicate<? super K,? super V,RuntimeException> filter)
public static <V> ExceptionalStream<V,RuntimeException> ofValues(Map<?,V> map)
public static <K,V> ExceptionalStream<V,RuntimeException> ofValues(Map<K,V> map, Throwables.Predicate<? super K,RuntimeException> keyFilter)
public static <K,V> ExceptionalStream<V,RuntimeException> ofValues(Map<K,V> map, Throwables.BiPredicate<? super K,? super V,RuntimeException> filter)
public static <T> ExceptionalStream<T,RuntimeException> iterate(Throwables.BooleanSupplier<? extends RuntimeException> hasNext, Throwables.Supplier<? extends T,RuntimeException> next)
public static <T> ExceptionalStream<T,RuntimeException> iterate(T init, Throwables.BooleanSupplier<? extends RuntimeException> hasNext, Throwables.UnaryOperator<T,? extends RuntimeException> f)
public static <T> ExceptionalStream<T,RuntimeException> iterate(T init, Throwables.Predicate<? super T,RuntimeException> hasNext, Throwables.UnaryOperator<T,RuntimeException> f)
public static <T> ExceptionalStream<T,RuntimeException> iterate(T init, Throwables.UnaryOperator<T,RuntimeException> f)
public static <T> ExceptionalStream<T,RuntimeException> generate(Throwables.Supplier<T,RuntimeException> supplier)
public static <T> ExceptionalStream<T,RuntimeException> repeat(T element, long n)
@SafeVarargs public static <T> ExceptionalStream<T,RuntimeException> concat(T[]... a)
@SafeVarargs public static <T> ExceptionalStream<T,RuntimeException> concat(Collection<? extends T>... a)
public static <A,B,T> ExceptionalStream<T,RuntimeException> zip(A[] a, B[] b, Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
public static <A,B,C,T> ExceptionalStream<T,RuntimeException> zip(A[] a, B[] b, C[] c, Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
public static <A,B,T> ExceptionalStream<T,RuntimeException> zip(Collection<? extends A> a, Collection<? extends B> b, Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
public static <A,B,C,T> ExceptionalStream<T,RuntimeException> zip(Collection<? extends A> a, Collection<? extends B> b, Collection<? extends C> c, Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
public static <A,B,T> ExceptionalStream<T,RuntimeException> zip(Iterator<? extends A> a, Iterator<? extends B> b, Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
public static <A,B,C,T> ExceptionalStream<T,RuntimeException> zip(Iterator<? extends A> a, Iterator<? extends B> b, Iterator<? extends C> c, Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
public static <A,B,T> ExceptionalStream<T,RuntimeException> zip(A[] a, B[] b, A valueForNoneA, B valueForNoneB, Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
public static <A,B,C,T> ExceptionalStream<T,RuntimeException> zip(A[] a, B[] b, C[] c, A valueForNoneA, B valueForNoneB, C valueForNoneC, Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
public static <A,B,T> ExceptionalStream<T,RuntimeException> zip(Collection<? extends A> a, Collection<? extends B> b, A valueForNoneA, B valueForNoneB, Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
public static <A,B,C,T> ExceptionalStream<T,RuntimeException> zip(Collection<? extends A> a, Collection<? extends B> b, Collection<? extends C> c, A valueForNoneA, B valueForNoneB, C valueForNoneC, Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
public static <A,B,T> ExceptionalStream<T,RuntimeException> zip(Iterator<? extends A> a, Iterator<? extends B> b, A valueForNoneA, B valueForNoneB, Throwables.BiFunction<? super A,? super B,T,RuntimeException> zipFunction)
public static <A,B,C,T> ExceptionalStream<T,RuntimeException> zip(Iterator<? extends A> a, Iterator<? extends B> b, Iterator<? extends C> c, A valueForNoneA, B valueForNoneB, C valueForNoneC, Throwables.TriFunction<? super A,? super B,? super C,T,RuntimeException> zipFunction)
public static <T> ExceptionalStream<T,RuntimeException> merge(T[] a, T[] b, Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
public static <T> ExceptionalStream<T,RuntimeException> merge(T[] a, T[] b, T[] c, Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
public static <T> ExceptionalStream<T,RuntimeException> merge(Collection<? extends T> a, Collection<? extends T> b, Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
public static <T> ExceptionalStream<T,RuntimeException> merge(Collection<? extends T> a, Collection<? extends T> b, Collection<? extends T> c, Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
public static <T> ExceptionalStream<T,RuntimeException> merge(Iterator<? extends T> a, Iterator<? extends T> b, Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
public static <T> ExceptionalStream<T,RuntimeException> merge(Iterator<? extends T> a, Iterator<? extends T> b, Iterator<? extends T> c, Throwables.BiFunction<? super T,? super T,MergeResult,RuntimeException> nextSelector)
Copyright © 2021. All rights reserved.