FunctionalInterface types
from the java.util.function package, allowing to throw checked Exceptions
that can be handled in Unchecked.| Interface | Description |
|---|---|
| CheckedBiConsumer<T,U> |
A
BiConsumer that allows for checked exceptions. |
| CheckedBiFunction<T,U,R> |
A
BiFunction that allows for checked exceptions. |
| CheckedBinaryOperator<T> |
A
BinaryOperator that allows for checked exceptions. |
| CheckedBiPredicate<T,U> |
A
BiPredicate that allows for checked exceptions. |
| CheckedBooleanSupplier |
A
BooleanSupplier that allows for checked exceptions. |
| CheckedConsumer<T> |
A
Consumer that allows for checked exceptions. |
| CheckedDoubleBinaryOperator |
A
DoubleBinaryOperator that allows for checked exceptions. |
| CheckedDoubleConsumer |
A
DoubleConsumer that allows for checked exceptions. |
| CheckedDoubleFunction<R> |
A
DoubleFunction that allows for checked exceptions. |
| CheckedDoublePredicate |
A
DoublePredicate that allows for checked exceptions. |
| CheckedDoubleSupplier |
A
DoubleSupplier that allows for checked exceptions. |
| CheckedDoubleToIntFunction |
A
DoubleToIntFunction that allows for checked exceptions. |
| CheckedDoubleToLongFunction |
A
DoubleToLongFunction that allows for checked exceptions. |
| CheckedDoubleUnaryOperator |
A
DoubleUnaryOperator that allows for checked exceptions. |
| CheckedFunction<T,R> |
A
Function that allows for checked exceptions. |
| CheckedIntBinaryOperator |
A
IntBinaryOperator that allows for checked exceptions. |
| CheckedIntConsumer |
A
IntConsumer that allows for checked exceptions. |
| CheckedIntFunction<R> |
A
IntFunction that allows for checked exceptions. |
| CheckedIntPredicate |
A
IntPredicate that allows for checked exceptions. |
| CheckedIntSupplier |
A
IntSupplier that allows for checked exceptions. |
| CheckedIntToDoubleFunction |
A
IntToDoubleFunction that allows for checked exceptions. |
| CheckedIntToLongFunction |
A
IntToLongFunction that allows for checked exceptions. |
| CheckedIntUnaryOperator |
A
IntUnaryOperator that allows for checked exceptions. |
| CheckedLongBinaryOperator |
A
LongBinaryOperator that allows for checked exceptions. |
| CheckedLongConsumer |
A
LongConsumer that allows for checked exceptions. |
| CheckedLongFunction<R> |
A
LongFunction that allows for checked exceptions. |
| CheckedLongPredicate |
A
LongPredicate that allows for checked exceptions. |
| CheckedLongSupplier |
A
LongSupplier that allows for checked exceptions. |
| CheckedLongToDoubleFunction |
A
LongToDoubleFunction that allows for checked exceptions. |
| CheckedLongToIntFunction |
A
LongToIntFunction that allows for checked exceptions. |
| CheckedLongUnaryOperator |
A
LongUnaryOperator that allows for checked exceptions. |
| CheckedObjDoubleConsumer<T> |
A
ObjDoubleConsumer that allows for checked exceptions. |
| CheckedObjIntConsumer<T> |
A
ObjIntConsumer that allows for checked exceptions. |
| CheckedObjLongConsumer<T> |
A
ObjLongConsumer that allows for checked exceptions. |
| CheckedPredicate<T> |
A
Predicate that allows for checked exceptions. |
| CheckedSupplier<T> |
A
Supplier that allows for checked exceptions. |
| CheckedToDoubleBiFunction<T,U> |
A
ToDoubleBiFunction that allows for checked exceptions. |
| CheckedToDoubleFunction<T> |
A
ToDoubleFunction that allows for checked exceptions. |
| CheckedToIntBiFunction<T,U> |
A
ToIntBiFunction that allows for checked exceptions. |
| CheckedToIntFunction<T> |
A
ToIntFunction that allows for checked exceptions. |
| CheckedToLongBiFunction<T,U> |
A
ToLongBiFunction that allows for checked exceptions. |
| CheckedToLongFunction<T> |
A
ToLongFunction that allows for checked exceptions. |
| CheckedUnaryOperator<T> |
A
UnaryOperator that allows for checked exceptions. |
Copyright © 2018. All rights reserved.