Uses of Class
org.apache.commons.lang3.stream.Streams.FailableStream
Packages that use Streams.FailableStream
Package
Description
Provides functional interfaces to complement those in
java.lang.function and utilities for working with Java
8 lambdas.Provides utility classes to complement those in
java.util.stream.-
Uses of Streams.FailableStream in org.apache.commons.lang3.function
Methods in org.apache.commons.lang3.function that return Streams.FailableStreamModifier and TypeMethodDescriptionstatic <E> Streams.FailableStream<E>Failable.stream(Collection<E> collection) Converts the given collection into aStreams.FailableStream.static <T> Streams.FailableStream<T>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.FailableStreamModifier and TypeMethodDescriptionStreams.FailableStream.filter(FailablePredicate<O, ?> predicate) Returns a FailableStream consisting of the elements of this stream that match the given FailablePredicate.<R> Streams.FailableStream<R>Streams.FailableStream.map(FailableFunction<O, R, ?> mapper) Returns a stream consisting of the results of applying the given function to the elements of this stream.static <O> Streams.FailableStream<O>Streams.stream(Collection<O> stream) Converts the givenCollectioninto aStreams.FailableStream.static <O> Streams.FailableStream<O>Converts the givenstreaminto aStreams.FailableStream.