Interface | Description |
---|---|
BiConsumer<T,U> |
Represents an operation that accepts two input arguments and returns no result.
|
BiFunction<T,U,R> |
Represents a function that accepts two arguments and produces a result.
|
Consumer<T> |
Represents an operation that accepts a single input argument and returns no
result.
|
Function<T,R> |
Represents a function that accepts one argument and produces a result.
|
Supplier<T> |
Represents a supplier of results.
|
Class | Description |
---|---|
Optional<T> |