See: Description
| Interface | Description |
|---|---|
| BiConsumer<LEFT,RIGHT> |
Implementations of this class perform work on the given parameters pair.
|
| BiFunction<LEFT,RIGHT,R> |
Implementations of this class perform work on the given parameters pair and return a result of an optionally different
type.
|
| Consumer<T> |
Implementations accept a given value and perform work on the argument.
|
| Function<T,R> |
Implementations of this class perform work on the given parameter and return a result of an optionally different
type.
|
| Pausable | |
| Predicate<T> |
Determines if the input object matches some criteria.
|
| Resource |
A Resource is a component with an active state, generally consuming hardware capacities (memory, cpu, io).
|
| Supplier<T> |
Implementations of this class supply the caller with an object.
|
| Class | Description |
|---|---|
| Functions | Deprecated |
| Predicates | Deprecated |
| Suppliers | Deprecated |