Uses of Class
org.apache.commons.lang3.stream.Streams.FailableStream
-
Packages that use Streams.FailableStream Package Description org.apache.commons.lang3.function Provides functional interfaces to complement those injava.lang.function
and utilities for working with Java 8 lambdas.org.apache.commons.lang3.stream Provides utility classes to complement those injava.util.stream
. -
-
Uses of Streams.FailableStream in org.apache.commons.lang3.function
Methods in org.apache.commons.lang3.function that return Streams.FailableStream Modifier and Type Method Description static <E> Streams.FailableStream<E>
Failable. stream(java.util.Collection<E> collection)
Converts the given collection into aStreams.FailableStream
.static <T> Streams.FailableStream<T>
Failable. stream(java.util.stream.Stream<T> stream)
Converts the given stream into aStreams.FailableStream
. -
Uses of Streams.FailableStream in org.apache.commons.lang3.stream
Methods in org.apache.commons.lang3.stream that return Streams.FailableStream Modifier and Type Method Description static <T> Streams.FailableStream<T>
Streams. failableStream(java.util.Collection<T> stream)
Converts the givenCollection
into aStreams.FailableStream
.static <T> Streams.FailableStream<T>
Streams. failableStream(java.util.stream.Stream<T> stream)
Converts the givenstream
into aStreams.FailableStream
.Streams.FailableStream<T>
Streams.FailableStream. filter(FailablePredicate<T,?> predicate)
Returns a FailableStream consisting of the elements of this stream that match the given FailablePredicate.<R> Streams.FailableStream<R>
Streams.FailableStream. map(FailableFunction<T,R,?> mapper)
Returns a stream consisting of the results of applying the given function to the elements of this stream.static <E> Streams.FailableStream<E>
Streams. stream(java.util.Collection<E> collection)
Deprecated.static <T> Streams.FailableStream<T>
Streams. stream(java.util.stream.Stream<T> stream)
Deprecated.
-