Skip navigation links
A C D E F G H I J L M N O P R S T U 

A

accept(T) - Method in interface no.finn.lambdacompanion.ThrowingConsumer
 
allMatch(Predicate<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
anyMatch(Predicate<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
apply(T, R) - Method in interface no.finn.lambdacompanion.ThrowingBiFunction
 
apply(T) - Method in interface no.finn.lambdacompanion.ThrowingFunction
 

C

close() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
collect(Supplier<R>, BiConsumer<R, ? super T>, BiConsumer<R, R>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
collect(Collector<? super T, A, R>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
count() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 

D

distinct() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 

E

Either<L,R> - Class in no.finn.lambdacompanion
Deprecated.
Either() - Constructor for class no.finn.lambdacompanion.Either
Deprecated.
 
Either.LeftProjection<L,R> - Class in no.finn.lambdacompanion
Deprecated.
Projects an Either into a Left.
Either.RightProjection<L,R> - Class in no.finn.lambdacompanion
Deprecated.
Projects an Either into a Right.
empty() - Static method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
entryToMap() - Static method in class no.finn.lambdacompanion.Streams
Deprecated.
 
equals(Object) - Method in class no.finn.lambdacompanion.Either
Deprecated.
Returns true if this and object are both either a Left or a Right, and both their containing values are equal as determined by their equal methods.
equals(Object) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
equals(Object) - Method in class no.finn.lambdacompanion.Pair
Deprecated.
 
equals(Object) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
equals(Object) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
ExtendedStream<T> - Class in no.finn.lambdacompanion
Deprecated.
ExtendedStream(Stream<T>) - Constructor for class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 

F

Failure<T> - Class in no.finn.lambdacompanion
Deprecated.
Failure(Exception) - Constructor for class no.finn.lambdacompanion.Failure
Deprecated.
 
failure(Exception) - Static method in class no.finn.lambdacompanion.Try
Deprecated.
 
filter(Predicate<L>) - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
 
filter(Predicate<R>) - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
 
filter(Predicate<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
filter(Predicate<T>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
filter(Optional<?>, Class<T>) - Static method in class no.finn.lambdacompanion.Optionals
Deprecated.
Convenience method to filter an optional based on its class and cast it at the same time
filter(Predicate<? super T>) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
filter(Predicate<T>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
filter(Predicate<T>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Applies a filter, where a match returns Success and Failure otherwise.
findAny() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
findFirst() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
findLast() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
firstOf(Supplier<Optional<T>>...) - Static method in class no.finn.lambdacompanion.Optionals
Deprecated.
Out of a list of suppliers of optional values, returns the first one that is present without unnecessary evaluating the next suppliers.
flatMap(Function<? super T, ? extends Stream<? extends R>>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
flatMap(ThrowingFunction<? super T, ? extends Try<U>, ? extends Exception>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
flatMap(Function<? super T, StreamableOptional<U>>) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
flatMap(ThrowingFunction<? super T, ? extends Try<U>, ? extends Exception>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
flatMap(ThrowingFunction<? super T, ? extends Try<U>, ? extends Exception>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Applies a function on two values.
flatMapCollection(Function<? super T, ? extends Collection<? extends R>>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
flatMapOptional(Function<? super T, Optional<? extends R>>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
flatMapToDouble(Function<? super T, ? extends DoubleStream>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
flatMapToInt(Function<? super T, ? extends IntStream>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
flatMapToLong(Function<? super T, ? extends LongStream>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
fold(Function<L, X>, Function<R, X>) - Method in class no.finn.lambdacompanion.Either
Deprecated.
Applies leftMapper if this is a Left or rightMapper if this is a Right.
foldLeft(BiFunction<T, R, R>, R) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
foldLeft(BiFunction<A, B, B>, B, List<A>) - Static method in class no.finn.lambdacompanion.Functions
Deprecated.
 
foldRight(BiFunction<T, R, R>, R) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
foldRight(BiFunction<A, B, B>, B, List<A>) - Static method in class no.finn.lambdacompanion.Functions
Deprecated.
 
forEach(Consumer<? super L>) - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
Executes the given side-effecting function if this is a Left
forEach(Consumer<? super R>) - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
Executes the given side-effecting function if this is a Right
forEach(Consumer<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
forEach(ThrowingConsumer<? super T, ? extends Exception>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
forEach(ThrowingConsumer<? super T, ? extends Exception>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
forEach(ThrowingConsumer<? super T, ? extends Exception>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Accepts a consuming function and applies it to the value if it is a Success.
forEachOrdered(Consumer<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
Functions - Class in no.finn.lambdacompanion
Deprecated.

G

get() - Method in interface no.finn.lambdacompanion.ThrowingSupplier
 
get() - Method in interface no.finn.lambdacompanion.ThrowingVoidSupplier
 
getException() - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
getLeft() - Method in class no.finn.lambdacompanion.Pair
Deprecated.
 
getRight() - Method in class no.finn.lambdacompanion.Pair
Deprecated.
 

H

hashCode() - Method in class no.finn.lambdacompanion.Either
Deprecated.
 
hashCode() - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
hashCode() - Method in class no.finn.lambdacompanion.Pair
Deprecated.
 
hashCode() - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
hashCode() - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
head(List<A>) - Static method in class no.finn.lambdacompanion.Functions
Deprecated.
 

I

ifPresent(Consumer<? super T>) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
isLeft() - Method in class no.finn.lambdacompanion.Either
Deprecated.
 
isParallel() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
isRight() - Method in class no.finn.lambdacompanion.Either
Deprecated.
 
iterator() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 

J

joinLeft(Function<L, Either<X, R>>) - Method in class no.finn.lambdacompanion.Either
Deprecated.
Joins an Either through Left.
joinRight(Function<R, Either<L, X>>) - Method in class no.finn.lambdacompanion.Either
Deprecated.
Joins an Either through Right.

L

left() - Method in class no.finn.lambdacompanion.Either
Deprecated.
 
left(L) - Static method in class no.finn.lambdacompanion.Either
Deprecated.
 
limit(long) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 

M

map(Function<L, X>) - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
The given function is applied if this is a Left.
map(Function<R, X>) - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
The given function is applied if this is a Right.
map(Function<? super T, ? extends R>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
map(ThrowingFunction<? super T, ? extends U, ? extends Exception>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
map(Function<? super T, ? extends U>) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
map(ThrowingFunction<? super T, ? extends U, ? extends Exception>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
map(ThrowingFunction<? super T, ? extends U, ? extends Exception>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Applies a function on a value of type Success.
mapToDouble(ToDoubleFunction<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
mapToInt(ToIntFunction<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
mapToLong(ToLongFunction<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
max(Comparator<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
min(Comparator<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 

N

no.finn.lambdacompanion - package no.finn.lambdacompanion
 
noneMatch(Predicate<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 

O

of(Stream<T>) - Static method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
of(List<Either<L, R>>) - Static method in class no.finn.lambdacompanion.Pair
Deprecated.
Given a list of Either[L,R] that can be a mixed collection of Left and Right, groups left side values into one list and right side values into another list and return both lists together as a Pair (makes a union of the values contained within a collection of disjoint unions)
of(T) - Static method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
of(ThrowingFunction<V, ? extends U, ? extends Exception>, V) - Static method in class no.finn.lambdacompanion.Try
Deprecated.
Starting point to the Try structure.
of(ThrowingBiFunction<V, W, ? extends U, ? extends Exception>, V, W) - Static method in class no.finn.lambdacompanion.Try
Deprecated.
Starting point to the Try structure.
of(ThrowingSupplier<U, ? extends Exception>) - Static method in class no.finn.lambdacompanion.Try
Deprecated.
Starting point to the Try structure.
of(ThrowingVoidSupplier<? extends Exception>) - Static method in class no.finn.lambdacompanion.Try
Deprecated.
Starting point to the Try structure.
ofBlankable(String) - Static method in class no.finn.lambdacompanion.Optionals
Deprecated.
Convenience method to build and Optional out of a String that can be null or blank
ofNullable(T) - Static method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
ofOptional(Optional<T>) - Static method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
Builds a StreamableOptional around the given Optional
onClose(Runnable) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
Optionals - Class in no.finn.lambdacompanion
Deprecated.
orElse(L) - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
 
orElse(R) - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
 
orElse(T) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
orElse(T) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
orElse(T) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
orElse(T) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Returns the value of the Success, or a default value of the same type if this is a Failure.
orElseGet(Supplier<L>) - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
 
orElseGet(Supplier<R>) - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
 
orElseGet(Supplier<? extends T>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
orElseGet(Supplier<? extends T>) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
orElseGet(Supplier<? extends T>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
orElseGet(Supplier<? extends T>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Returns the value of the Success, or lazily falls back to a supplied value of the same type
orElseRethrow() - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
orElseRethrow() - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
orElseRethrow() - Method in class no.finn.lambdacompanion.Try
Deprecated.
Escapes the Try and enters a regular try-catch flow by rethowing the caught exception when a Failure
orElseThrow(Function<R, X>) - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
 
orElseThrow(Function<L, X>) - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
 
orElseThrow(Function<X, Y>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
orElseThrow(Supplier<? extends X>) - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
orElseThrow(Function<X, Y>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
orElseThrow(Function<X, Y>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Escapes the Try and enters a regular try-catch flow

P

Pair<L,R> - Class in no.finn.lambdacompanion
Deprecated.
Pair(L, R) - Constructor for class no.finn.lambdacompanion.Pair
Deprecated.
 
parallel() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
peek(Consumer<? super L>) - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
Executes the given side-effecting function if this is a Left and returns this Either
peek(Consumer<? super R>) - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
Executes the given side-effecting function if this is a Right and returns this Either
peek(Consumer<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
peek(ThrowingConsumer<? super T, ? extends Exception>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
peek(ThrowingConsumer<? super T, ? extends Exception>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
peek(ThrowingConsumer<? super T, ? extends Exception>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Same as forEach but returns the Try for further chaining
peekFailure(Consumer<Failure<T>>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
peekFailure(Consumer<Failure<T>>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
peekFailure(Consumer<Failure<T>>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Does nothing on Success, but accepts a consumer on Failure

R

recover(Function<? super T, ? extends U>, Function<Exception, ? extends U>) - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
recover(Function<? super T, ? extends U>, Function<Exception, ? extends U>) - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
recover(Function<? super T, ? extends U>, Function<Exception, ? extends U>) - Method in class no.finn.lambdacompanion.Try
Deprecated.
Accepts two functions, the first applied if Success - returning the value, the other executed if Failure, returning a fallback value.
reduce(T, BinaryOperator<T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
reduce(BinaryOperator<T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
reduce(U, BiFunction<U, ? super T, U>, BinaryOperator<U>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
right() - Method in class no.finn.lambdacompanion.Either
Deprecated.
 
right(R) - Static method in class no.finn.lambdacompanion.Either
Deprecated.
 

S

sequence(List<Try<T>>) - Static method in class no.finn.lambdacompanion.Try
Deprecated.
Creates one Try from a list of tries containing the same type, or the _first_ failure in the given list
sequential() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
skip(long) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
sorted() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
sorted(Comparator<? super T>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
spliterator() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
stream(Optional<T>) - Static method in class no.finn.lambdacompanion.Optionals
Deprecated.
Convenience method to turn an Optional into a Stream, due to the lack Optional#stream() method...
stream() - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
Turns this optional into a Stream
stream(Collection<T>) - Static method in class no.finn.lambdacompanion.Streams
Deprecated.
 
stream(Stream<T>) - Static method in class no.finn.lambdacompanion.Streams
Deprecated.
 
StreamableOptional<T> - Class in no.finn.lambdacompanion
Deprecated.
Streams - Class in no.finn.lambdacompanion
Deprecated.
Streams() - Constructor for class no.finn.lambdacompanion.Streams
Deprecated.
 
Success<T> - Class in no.finn.lambdacompanion
Deprecated.
Success(T) - Constructor for class no.finn.lambdacompanion.Success
Deprecated.
 
success(T) - Static method in class no.finn.lambdacompanion.Try
Deprecated.
 

T

tail(List<A>) - Static method in class no.finn.lambdacompanion.Functions
Deprecated.
 
ThrowingBiFunction<T,R,S,E extends Exception> - Interface in no.finn.lambdacompanion
 
ThrowingConsumer<T,E extends Exception> - Interface in no.finn.lambdacompanion
 
ThrowingFunction<T,R,E extends Exception> - Interface in no.finn.lambdacompanion
 
ThrowingSupplier<T,E extends Exception> - Interface in no.finn.lambdacompanion
 
ThrowingVoidSupplier<E extends Exception> - Interface in no.finn.lambdacompanion
 
toArray() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
toArray(IntFunction<A[]>) - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
toEither() - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
toEither() - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
toEither() - Method in class no.finn.lambdacompanion.Try
Deprecated.
Creates an Either where the Left is the Failure and Right is the Success from this Try
toList() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
toMap() - Static method in class no.finn.lambdacompanion.Pair
Deprecated.
Shorthand to collect a Stream of Pair-s to a Map using left value as the key and right value as the value of the Map entries
toMapEntry() - Method in class no.finn.lambdacompanion.Pair
Deprecated.
 
toOptional() - Method in class no.finn.lambdacompanion.Either.LeftProjection
Deprecated.
 
toOptional() - Method in class no.finn.lambdacompanion.Either.RightProjection
Deprecated.
 
toOptional() - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
toOptional() - Method in class no.finn.lambdacompanion.StreamableOptional
Deprecated.
 
toOptional() - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
toOptional() - Method in class no.finn.lambdacompanion.Try
Deprecated.
Creates an Optional wrapping the value if Success.
toSet() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
toString() - Method in class no.finn.lambdacompanion.Either
Deprecated.
 
toString() - Method in class no.finn.lambdacompanion.Failure
Deprecated.
 
toString() - Method in class no.finn.lambdacompanion.Success
Deprecated.
 
Try<T> - Class in no.finn.lambdacompanion
Deprecated.
Try() - Constructor for class no.finn.lambdacompanion.Try
Deprecated.
 

U

unordered() - Method in class no.finn.lambdacompanion.ExtendedStream
Deprecated.
 
A C D E F G H I J L M N O P R S T U 
Skip navigation links

Copyright © 2014–2017. All rights reserved.