See: Description
| Interface | Description |
|---|---|
| FailableBinaryFunction<INPUT0,INPUT1,OUTPUT,EXCEPTION extends Exception> |
This functional interface models a failable binary function that maps an object of type
INPUT0 and an object of type INPUT1 to an object of type OUTPUT. |
| FailableBinaryOperator<TYPE,EXCEPTION extends Exception> |
This functional interface models a failable binary operator that maps two objects of type
TYPE to another object of type TYPE. |
| FailableCollector<INPUT,RESULT,COLLECT_EXCEPTION extends Exception,RESULT_EXCEPTION extends Exception> |
A failable collector consumes objects of type
INPUT and produces a result of type RESULT. |
| FailableConsumer<INPUT,EXCEPTION extends Exception> |
This functional interface models a failable method that consumes objects of type
INPUT without returning a result. |
| FailablePredicate<INPUT,EXCEPTION extends Exception> |
This functional interface models a failable predicate that evaluates whether an input of type
INPUT satisfies a condition. |
| FailableProducer<OUTPUT,EXCEPTION extends Exception> |
This functional interface models a failable method that produces objects of type
OUTPUT without requiring a parameter. |
| FailableUnaryFunction<INPUT,OUTPUT,EXCEPTION extends Exception> |
This functional interface models a failable unary function that maps an object of type
INPUT to an object of type OUTPUT. |
| FailableUnaryOperator<TYPE,EXCEPTION extends Exception> |
This functional interface models a failable unary operator that maps an object of type
TYPE to another object of type TYPE. |
Copyright © 2017. All rights reserved.