Uses of Interface
org.osgi.util.function.Supplier
-
Uses of Supplier in org.osgi.util.function
Modifier and TypeMethodDescriptionstatic <T> Supplier<T>
Supplier.asSupplier
(Supplier<T> wrapped) Returns aSupplier
which wraps the specifiedjava.util.function.Supplier
.Modifier and TypeMethodDescriptionstatic <T> Supplier<T>
Supplier.asJavaSupplier
(Supplier<T> wrapped) Returns ajava.util.function.Supplier
which wraps the specifiedSupplier
and throws any thrown exceptions.static <T> Supplier<T>
Supplier.asJavaSupplierOrElse
(Supplier<T> wrapped, T orElse) Returns ajava.util.function.Supplier
which wraps the specifiedSupplier
and the specified value.static <T> Supplier<T>
Supplier.asJavaSupplierOrElseGet
(Supplier<T> wrapped, Supplier<? extends T> orElseGet) Returns ajava.util.function.Supplier
which wraps the specifiedSupplier
and the specifiedjava.util.function.Supplier
.