| Interface | Description |
|---|---|
| BiConsumer<T,U> |
BiConsumer is an operation that accepts two arguments and returns no result.
|
| BiFunction<T,U,R> |
A function that accepts two arguments and returns a result
|
| BiPredicate<T,U> |
A predicate (boolean valued function) with two arguments.
|
| Consumer<T> |
A function that accepts a single input and returns no result
|
| Function<T,R> |
A Function accepts one argument and returns a result
|
| Predicate<T> |
A boolean valued function of a single input argument
|
| Supplier<T> |
A supplier of results with no input arguments
|
| UnaryOperator<T> |
A specialization of
Function where the input and return types are the same |
| Class | Description |
|---|---|
| FunctionalUtils |
Copyright © 2019. All rights reserved.