See: Description
| Interface | Description |
|---|---|
| BinaryFunction<INPUT0,INPUT1,OUTPUT> |
This functional interface models a binary function that maps an object of type
INPUT0 and an object of type INPUT1 to an object of type OUTPUT. |
| BinaryOperator<TYPE> |
This functional interface models a binary operator that maps two objects of type
TYPE to another object of type TYPE. |
| Collector<INPUT,RESULT> |
A collector consumes objects of type
INPUT and produces a result of type RESULT. |
| Consumer<INPUT> |
This functional interface models a method that consumes objects of type
INPUT without returning a result. |
| Predicate<INPUT> |
This functional interface models a predicate that evaluates whether an object of type
INPUT satisfies a condition. |
| Producer<OUTPUT> |
This functional interface models a method that produces objects of type
OUTPUT without requiring a parameter. |
| UnaryFunction<INPUT,OUTPUT> |
This functional interface models a unary function that maps an object of type
INPUT to an object of type OUTPUT. |
| UnaryOperator<TYPE> |
This functional interface models a unary operator that maps an object of type
TYPE to another object of type TYPE. |
Copyright © 2017. All rights reserved.