Uses of Interface
org.osgi.util.function.Supplier
Packages that use Supplier
-
Uses of Supplier in org.osgi.util.function
Methods in org.osgi.util.function that return SupplierModifier and TypeMethodDescriptionstatic <T> Supplier<T>Supplier.asSupplier(Supplier<T> wrapped) Returns aSupplierwhich wraps the specifiedjava.util.function.Supplier.Methods in org.osgi.util.function with parameters of type SupplierModifier and TypeMethodDescriptionstatic <T> Supplier<T>Supplier.asJavaSupplier(Supplier<T> wrapped) Returns ajava.util.function.Supplierwhich wraps the specifiedSupplierand throws any thrown exceptions.static <T> Supplier<T>Supplier.asJavaSupplierOrElse(Supplier<T> wrapped, T orElse) Returns ajava.util.function.Supplierwhich wraps the specifiedSupplierand the specified value.static <T> Supplier<T>Supplier.asJavaSupplierOrElseGet(Supplier<T> wrapped, Supplier<? extends T> orElseGet) Returns ajava.util.function.Supplierwhich wraps the specifiedSupplierand the specifiedjava.util.function.Supplier.