Skip navigation links
A B C D F G H O P R S T U W X 

A

accept(T, U) - Method in interface de.team33.libs.exceptional.v4.functional.XBiConsumer
Performs this operation on the given arguments.
accept(T) - Method in interface de.team33.libs.exceptional.v4.functional.XConsumer
Performs this operation on the given argument.
altWrapping(Function<String, RuntimeException>) - Static method in class de.team33.libs.exceptional.v4.functional.Converter
Returns an alternative wrapping method for Converter.using(Function) that uses the message of the original Exception to create the wrapping RuntimeException.
apply(T, U) - Method in interface de.team33.libs.exceptional.v4.functional.XBiFunction
Performs this operation on the given arguments and returns a result.
apply(T) - Method in interface de.team33.libs.exceptional.v4.functional.XFunction
Performs this operation on the given argument and returns a result.

B

biConsumer(XBiConsumer<T, U, ?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XBiConsumer that may throw a checked exception as BiConsumer that, when executed, wraps any occurring checked exception as WrappedException.
biConsumer(XBiConsumer<T, U, ?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XBiConsumer that may throw a checked exception as BiConsumer that, when executed, wraps any occurring checked exception as specific unchecked exception.
biFunction(XBiFunction<T, U, R, ?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XBiFunction that may throw a checked exception as BiFunction that, when executed, wraps any occurring checked exception as a specific unchecked exception.
biFunction(XBiFunction<T, U, R, ?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XBiFunction that may throw a checked exception as BiFunction that, when executed, wraps any occurring checked exception as a specific unchecked exception.
biPredicate(XBiPredicate<T, U, ?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XBiPredicate that may throw a checked exception as BiPredicate that, when executed, wraps any occurring checked exception as a specific unchecked exception.
biPredicate(XBiPredicate<T, U, ?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XBiPredicate that may throw a checked exception as BiPredicate that, when executed, wraps any occurring checked exception as a specific unchecked exception.

C

consumer(XConsumer<T, ?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XConsumer that may throw a checked exception as Consumer that, when executed, wraps any occurring checked exception as WrappedException.
consumer(XConsumer<T, ?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XConsumer that may throw a checked exception as Consumer that, when executed, wraps any occurring checked exception as specific unchecked exception.
Conversion - Class in de.team33.libs.exceptional.v4.functional
A utility class that can convert certain functional constructs that may throw checked exceptions (e.g.
Converter - Class in de.team33.libs.exceptional.v4.functional
A tool that can convert certain functional constructs that may throw checked exceptions (e.g.

D

de.team33.libs.exceptional.v4 - package de.team33.libs.exceptional.v4
 
de.team33.libs.exceptional.v4.functional - package de.team33.libs.exceptional.v4.functional
 

F

fallback() - Method in class de.team33.libs.exceptional.v4.Handling
Returns the associated subject.
function(XFunction<T, R, ?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XFunction that may throw a checked exception as Function that, when executed, wraps any occurring checked exception as WrappedException.
function(XFunction<T, R, ?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XFunction that may throw a checked exception as Function that, when executed, wraps any occurring checked exception as specific unchecked exception.

G

get() - Method in interface de.team33.libs.exceptional.v4.functional.XSupplier
Performs this operation and returns a result.

H

Handling<T extends Throwable> - Class in de.team33.libs.exceptional.v4
A tool that supports the differentiated handling of exceptions.

O

of(T) - Static method in class de.team33.libs.exceptional.v4.Handling
Initiates a Handling of the given subject.

P

predicate(XPredicate<T, ?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XPredicate that may throw a checked exception as Predicate that, when executed, wraps any occurring checked exception as WrappedException.
predicate(XPredicate<T, ?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XPredicate that may throw a checked exception as Predicate that, when executed, wraps any occurring checked exception as specific unchecked exception.

R

reThrowCauseIf(Class<X>) - Method in class de.team33.libs.exceptional.v4.Handling
Re-throws the cause of the associated subject if it matches the given exception type.
reThrowIf(Class<X>) - Method in class de.team33.libs.exceptional.v4.Handling
Re-throws the associated subject if it matches the given exception type.
run() - Method in interface de.team33.libs.exceptional.v4.functional.XRunnable
Performs this operation.
runnable(XRunnable<?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XRunnable that may throw a checked exception as Runnable that, when executed, wraps any occurring checked exception as WrappedException.
runnable(XRunnable<?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XRunnable that may throw a checked exception as Runnable that, when executed, wraps any occurring checked exception as specific unchecked exception.

S

stdWrapping(BiFunction<String, Throwable, RuntimeException>) - Static method in class de.team33.libs.exceptional.v4.functional.Converter
Returns a standard wrapping method for Converter.using(Function) that uses the message of the original Exception to create the wrapping RuntimeException.
supplier(XSupplier<R, ?>) - Static method in class de.team33.libs.exceptional.v4.functional.Conversion
Wraps an XSupplier that may throw a checked exception as Supplier that, when executed, wraps any occurring checked exception as WrappedException.
supplier(XSupplier<R, ?>) - Method in class de.team33.libs.exceptional.v4.functional.Converter
Wraps an XSupplier that may throw a checked exception as Supplier that, when executed, wraps any occurring checked exception as specific unchecked exception.

T

test(T, U) - Method in interface de.team33.libs.exceptional.v4.functional.XBiPredicate
Performs this operation on the given arguments and returns a boolean result.
test(T) - Method in interface de.team33.libs.exceptional.v4.functional.XPredicate
Performs this operation on the given argument and returns a boolean result.
throwMapped(Function<? super T, X>) - Method in class de.team33.libs.exceptional.v4.Handling
Applies the given mapping to the associated subject and throws the result if is it NOT null.
throwMappedCause(Function<Throwable, X>) - Method in class de.team33.libs.exceptional.v4.Handling
Applies the given mapping to the cause of the associated subject and throws the result if is it NOT null.

U

using(Function<Throwable, RuntimeException>) - Static method in class de.team33.libs.exceptional.v4.functional.Converter
Returns a new instance using a given wrapping method.

W

WrappedException - Exception in de.team33.libs.exceptional.v4
A RuntimeException dedicated to wrap other exceptions, especially checked exceptions.
WrappedException(String, Throwable) - Constructor for exception de.team33.libs.exceptional.v4.WrappedException
Initializes a new instance with the given message and cause.
WrappedException(Throwable) - Constructor for exception de.team33.libs.exceptional.v4.WrappedException
Initializes a new instance with the given cause and its message.

X

XBiConsumer<T,U,X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of consumer that allows to throw a checked exception.
XBiFunction<T,U,R,X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of function that allows to throw a checked exception.
XBiPredicate<T,U,X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of predicate that allows to throw a checked exception.
XConsumer<T,X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of consumer that allows to throw a checked exception.
XFunction<T,R,X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of function that allows to throw a checked exception.
XPredicate<T,X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of predicate that allows to throw a checked exception.
XRunnable<X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of runnable that allows to throw a checked exception.
XSupplier<T,X extends Exception> - Interface in de.team33.libs.exceptional.v4.functional
A kind of supplier that allows to throw a checked exception.
A B C D F G H O P R S T U W X 
Skip navigation links

Copyright © 2021. All rights reserved.