Class Suppliers
java.lang.Object
org.apache.commons.lang3.function.Suppliers
Helps use
Supplier
.- Since:
- 3.13.0
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> T
Null-safe call toSupplier.get()
.static <T> Supplier<T>
nul()
Returns the singleton supplier that always returns null.
-
Constructor Details
-
Suppliers
Deprecated.TODO Make private in 4.0.Make private in 4.0.
-
-
Method Details
-
get
Null-safe call toSupplier.get()
.- Type Parameters:
T
- the type of results supplied by this supplier.- Parameters:
supplier
- the supplier or null.- Returns:
- Result of
Supplier.get()
or null.
-
nul
Returns the singleton supplier that always returns null.This supplier never throws an exception.
- Type Parameters:
T
- Supplied type.- Returns:
- The NUL singleton.
- Since:
- 3.14.0
-