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