Interface | Description |
---|---|
BiFunction<F,S,R> |
An interface of a function that accepts a first and second argument and returns a result.
|
Consumer<T> |
A functional interface that consumes, without results, an argument.
|
Function<A,R> |
A functional interface and can be used to apply a function to a type and yield a result.
|
Predicate<T> |
A functional interface that can be used to indicate a boolean test is to be applied to
some type.
|
Supplier<T> |
A supplier of results.
|
Class | Description |
---|---|
Optional<T> |
A container object which may or may not contain a non-null value.
|
Predicates |
Utility operations on predicates.
|