A C G L N O R S T U W X 
All Classes All Packages

A

accept(T) - Method in interface com.pivovarit.function.ThrowingConsumer
 
accept(T, U) - Method in interface com.pivovarit.function.ThrowingBiConsumer
 
and(ThrowingBiPredicate<? super T, ? super U, ? extends E>) - Method in interface com.pivovarit.function.ThrowingBiPredicate
 
and(ThrowingPredicate<? super T, ? extends E>) - Method in interface com.pivovarit.function.ThrowingPredicate
 
andThen(ThrowingFunction<? super R, ? extends V, ? extends E>) - Method in interface com.pivovarit.function.ThrowingBiFunction
Performs provided action on the result of this ThrowingBiFunction instance
andThen(ThrowingFunction<? super R, ? extends V, ? extends E>) - Method in interface com.pivovarit.function.ThrowingFunction
 
andThenConsume(ThrowingBiConsumer<? super T, ? super U, ? extends E>) - Method in interface com.pivovarit.function.ThrowingBiConsumer
 
andThenConsume(ThrowingConsumer<? super T, ? extends E>) - Method in interface com.pivovarit.function.ThrowingConsumer
Chains given ThrowingConsumer instance
apply(int) - Method in interface com.pivovarit.function.ThrowingIntFunction
 
apply(T) - Method in interface com.pivovarit.function.ThrowingFunction
 
apply(T1, T2) - Method in interface com.pivovarit.function.ThrowingBiFunction
 
asFunction() - Method in interface com.pivovarit.function.ThrowingBiConsumer
Returns this ThrowingBiConsumer instance as a ThrowingBiFunction
asFunction() - Method in interface com.pivovarit.function.ThrowingBiPredicate
 
asFunction() - Method in interface com.pivovarit.function.ThrowingConsumer
 
asFunction() - Method in interface com.pivovarit.function.ThrowingPredicate
 
asFunction() - Method in interface com.pivovarit.function.ThrowingSupplier
 

C

com.pivovarit.function - package com.pivovarit.function
The com.pivovarit.function package contains checked equivalents of the java.util.function package
com.pivovarit.function.exception - package com.pivovarit.function.exception
 
compose(ThrowingFunction<? super V, ? extends T, ? extends E>) - Method in interface com.pivovarit.function.ThrowingFunction
 

G

get() - Method in interface com.pivovarit.function.ThrowingSupplier
 

L

lift() - Method in interface com.pivovarit.function.ThrowingBiFunction
 
lift() - Method in interface com.pivovarit.function.ThrowingFunction
 
lift() - Method in interface com.pivovarit.function.ThrowingIntFunction
 
lift() - Method in interface com.pivovarit.function.ThrowingSupplier
 
lifted(ThrowingBiFunction<T1, T2, R, ?>) - Static method in interface com.pivovarit.function.ThrowingBiFunction
 
lifted(ThrowingFunction<T, R, ?>) - Static method in interface com.pivovarit.function.ThrowingFunction
 
lifted(ThrowingIntFunction<R, ?>) - Static method in interface com.pivovarit.function.ThrowingIntFunction
 
lifted(ThrowingSupplier<T, ?>) - Static method in interface com.pivovarit.function.ThrowingSupplier
 

N

negate() - Method in interface com.pivovarit.function.ThrowingBiPredicate
 
negate() - Method in interface com.pivovarit.function.ThrowingPredicate
 

O

or(ThrowingBiPredicate<? super T, ? super U, ? extends E>) - Method in interface com.pivovarit.function.ThrowingBiPredicate
 
or(ThrowingPredicate<? super T, ? extends E>) - Method in interface com.pivovarit.function.ThrowingPredicate
 

R

run() - Method in interface com.pivovarit.function.ThrowingRunnable
 

S

sneaky(ThrowingBiConsumer<T, U, ?>) - Static method in interface com.pivovarit.function.ThrowingBiConsumer
Returns a new BiConsumer instance which rethrows the checked exception using the Sneaky Throws pattern
sneaky(ThrowingBiFunction<? super T1, ? super T2, ? extends R, ?>) - Static method in interface com.pivovarit.function.ThrowingBiFunction
 
sneaky(ThrowingBiPredicate<T, U, ?>) - Static method in interface com.pivovarit.function.ThrowingBiPredicate
 
sneaky(ThrowingConsumer<T, ?>) - Static method in interface com.pivovarit.function.ThrowingConsumer
Returns a new BiConsumer instance which rethrows the checked exception using the Sneaky Throws pattern
sneaky(ThrowingFunction<? super T1, ? extends R, ?>) - Static method in interface com.pivovarit.function.ThrowingFunction
 
sneaky(ThrowingIntFunction<? extends R, ?>) - Static method in interface com.pivovarit.function.ThrowingIntFunction
 
sneaky(ThrowingPredicate<T, ?>) - Static method in interface com.pivovarit.function.ThrowingPredicate
 
sneaky(ThrowingRunnable<?>) - Static method in interface com.pivovarit.function.ThrowingRunnable
Returns a new Runnable instance which rethrows the checked exception using the Sneaky Throws pattern
sneaky(ThrowingSupplier<T1, ?>) - Static method in interface com.pivovarit.function.ThrowingSupplier
Returns a new Supplier instance which rethrows the checked exception using the Sneaky Throws pattern
sneaky(ThrowingUnaryOperator<T, ?>) - Static method in interface com.pivovarit.function.ThrowingUnaryOperator
Returns a new UnaryOperator instance which rethrows the checked exception using the Sneaky Throws pattern
sneakyThrow(Exception) - Static method in class com.pivovarit.function.SneakyThrowUtil
 
SneakyThrowUtil - Class in com.pivovarit.function
 
SneakyThrowUtil() - Constructor for class com.pivovarit.function.SneakyThrowUtil
 

T

test(T) - Method in interface com.pivovarit.function.ThrowingPredicate
 
test(T, U) - Method in interface com.pivovarit.function.ThrowingBiPredicate
 
ThrowingBiConsumer<T,​U,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents an operation that accepts two input arguments and returns no result.
ThrowingBiFunction<T1,​T2,​R,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents a function that accepts two arguments and produces a result.
ThrowingBinaryOperator<T,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents an operation upon two operands of the same type, producing a result of the same type as the operands.
ThrowingBiPredicate<T,​U,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents a predicate (boolean-valued function) of two arguments.
ThrowingConsumer<T,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents a function that accepts one argument and does not return any value; Function might throw a checked exception instance.
ThrowingFunction<T,​R,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents a function that accepts one argument and returns a value; Function might throw a checked exception instance.
ThrowingIntFunction<R,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Functional interface mirroring IntFunction for primitive ints from the java.util.function package.
ThrowingPredicate<T,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents a function that accepts one argument and returns a boolean value Function might throw a checked exception instance.
ThrowingRunnable<E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents an action that can be performed.
ThrowingSupplier<T,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents a function that accepts zero arguments and returns some value.
ThrowingUnaryOperator<T,​E extends java.lang.Exception> - Interface in com.pivovarit.function
Represents an operation on a single operand that produces a result of the same type as its operand.

U

uncheck() - Method in interface com.pivovarit.function.ThrowingBiConsumer
Returns a new BiConsumer instance which wraps thrown checked exception instance into a RuntimeException
uncheck() - Method in interface com.pivovarit.function.ThrowingBiPredicate
 
uncheck() - Method in interface com.pivovarit.function.ThrowingConsumer
 
uncheck() - Method in interface com.pivovarit.function.ThrowingFunction
 
uncheck() - Method in interface com.pivovarit.function.ThrowingIntFunction
 
uncheck() - Method in interface com.pivovarit.function.ThrowingPredicate
 
uncheck() - Method in interface com.pivovarit.function.ThrowingSupplier
 
uncheck() - Method in interface com.pivovarit.function.ThrowingUnaryOperator
Returns a new UnaryOperator instance which wraps thrown checked exception instance into a RuntimeException
unchecked() - Method in interface com.pivovarit.function.ThrowingBiFunction
 
unchecked() - Method in interface com.pivovarit.function.ThrowingBinaryOperator
 
unchecked() - Method in interface com.pivovarit.function.ThrowingRunnable
 
unchecked(ThrowingBiConsumer<T, U, ?>) - Static method in interface com.pivovarit.function.ThrowingBiConsumer
 
unchecked(ThrowingBiFunction<T1, T2, R, ?>) - Static method in interface com.pivovarit.function.ThrowingBiFunction
 
unchecked(ThrowingBinaryOperator<T, ?>) - Static method in interface com.pivovarit.function.ThrowingBinaryOperator
 
unchecked(ThrowingBiPredicate<T, U, ?>) - Static method in interface com.pivovarit.function.ThrowingBiPredicate
 
unchecked(ThrowingConsumer<T, ?>) - Static method in interface com.pivovarit.function.ThrowingConsumer
 
unchecked(ThrowingFunction<T, R, ?>) - Static method in interface com.pivovarit.function.ThrowingFunction
 
unchecked(ThrowingIntFunction<R, ?>) - Static method in interface com.pivovarit.function.ThrowingIntFunction
 
unchecked(ThrowingPredicate<T, ?>) - Static method in interface com.pivovarit.function.ThrowingPredicate
 
unchecked(ThrowingRunnable<?>) - Static method in interface com.pivovarit.function.ThrowingRunnable
 
unchecked(ThrowingSupplier<T, ?>) - Static method in interface com.pivovarit.function.ThrowingSupplier
 
unchecked(ThrowingUnaryOperator<T, ?>) - Static method in interface com.pivovarit.function.ThrowingUnaryOperator
 

W

WrappedException - Exception in com.pivovarit.function.exception
 
WrappedException(Throwable) - Constructor for exception com.pivovarit.function.exception.WrappedException
 

X

xor(ThrowingBiPredicate<? super T, ? super U, ? extends E>) - Method in interface com.pivovarit.function.ThrowingBiPredicate
 
xor(ThrowingPredicate<? super T, ? extends E>) - Method in interface com.pivovarit.function.ThrowingPredicate
 
A C G L N O R S T U W X 
All Classes All Packages