See: Description
Interface | Description |
---|---|
Action |
A functional interface similar to Runnable but allows throwing a checked exception.
|
BiConsumer |
A functional interface (callback) that accepts two values (of possibly different types).
|
BiFunction |
A functional interface (callback) that computes a value based on multiple input values.
|
BiPredicate |
A functional interface (callback) that returns true or false for the given input values.
|
BooleanSupplier |
A functional interface (callback) that returns a boolean value.
|
Cancellable |
A functional interface that has a single cancel method
that can throw.
|
Consumer |
A functional interface (callback) that accepts a single value.
|
Function |
A functional interface that takes a value and returns another value, possibly with a
different type and allows throwing a checked exception.
|
Function3 |
A functional interface (callback) that computes a value based on multiple input values.
|
Function4 |
A functional interface (callback) that computes a value based on multiple input values.
|
Function5 |
A functional interface (callback) that computes a value based on multiple input values.
|
Function6 |
A functional interface (callback) that computes a value based on multiple input values.
|
Function7 |
A functional interface (callback) that computes a value based on multiple input values.
|
Function8 |
A functional interface (callback) that computes a value based on multiple input values.
|
Function9 |
A functional interface (callback) that computes a value based on multiple input values.
|
IntFunction |
A functional interface (callback) that takes a primitive value and return value of type T.
|
LongConsumer |
A functional interface (callback) that consumes a primitive long value.
|
Predicate |
A functional interface (callback) that returns true or false for the given input value.
|