@FunctionalInterface public interface Function0<R> extends Supplier<R>
| Modifier and Type | Method and Description |
|---|---|
default R |
apply()
Apply this function to the arguments.
|
default R |
apply(Tuple0
Apply this function to the arguments.
|
static <R> Function0 |
from(Supplier
Convert to this function from a
Supplier
|
R |
get()
Apply this function to the arguments.
|
default Supplier |
toSupplier()
Convert this function to a
Supplier
|