| 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.
|
| BiPredicate<T,U> |
Represents a predicate (boolean-valued function) of two arguments.
|
| 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.
|
| Predicate<T> |
Represents a predicate (boolean-valued function) of one argument.
|
| SerializableBiConsumer<T,U> |
BiConsumer marked as Serializable. |
| SerializableBiFunction<T,U,R> |
BiFunction marked as Serializable. |
| SerializableBiPredicate<T,U> |
BiPredicate marked as Serializable. |
| SerializableConsumer<T> |
Consumer marked as Serializable. |
| SerializableFunction<T,R> |
Function marked as Serializable. |
| SerializablePredicate<T> |
Predicate marked as Serializable. |
| SerializableSupplier<T> |
Supplier marked as Serializable. |
| Supplier<T> |
Represents a supplier of results.
|
| UnsafeSupplier<T> |
Represents a supplier of results.
|
| Class | Description |
|---|---|
| Objects |
This is a copy of JDK7
java.util.Objects class for JDK6 support. |
Copyright © 2020. All rights reserved.