Uses of Interface
org.docx4j.com.google.common.base.Supplier
Packages that use Supplier
-
Uses of Supplier in org.docx4j.com.google.common.base
Methods in org.docx4j.com.google.common.base that return SupplierModifier and TypeMethodDescriptionstatic <F,T> Supplier<T> Returns a new supplier which is the composition of the provided function and supplier.static <T> Supplier<T>Returns a supplier which caches the instance retrieved during the first call toget()and returns that value on subsequent calls toget().static <T> Supplier<T>Suppliers.memoizeWithExpiration(Supplier<T> delegate, long duration, TimeUnit unit) Returns a supplier that caches the instance supplied by the delegate and removes the cached value after the specified time has passed.static <T> Supplier<T>Suppliers.ofInstance(@Nullable T instance) Returns a supplier that always suppliesinstance.static <T> Supplier<T>Suppliers.synchronizedSupplier(Supplier<T> delegate) Returns a supplier whoseget()method synchronizes ondelegatebefore calling it, making it thread-safe.Methods in org.docx4j.com.google.common.base that return types with arguments of type SupplierModifier and TypeMethodDescriptionSuppliers.supplierFunction()Returns a function that accepts a supplier and returns the result of invokingget()on that supplier.Methods in org.docx4j.com.google.common.base with parameters of type SupplierModifier and TypeMethodDescriptionstatic <F,T> Supplier<T> Returns a new supplier which is the composition of the provided function and supplier.static <T> Supplier<T>Returns a supplier which caches the instance retrieved during the first call toget()and returns that value on subsequent calls toget().static <T> Supplier<T>Suppliers.memoizeWithExpiration(Supplier<T> delegate, long duration, TimeUnit unit) Returns a supplier that caches the instance supplied by the delegate and removes the cached value after the specified time has passed.static <T> Supplier<T>Suppliers.synchronizedSupplier(Supplier<T> delegate) Returns a supplier whoseget()method synchronizes ondelegatebefore calling it, making it thread-safe. -
Uses of Supplier in org.docx4j.com.google.common.cache
Methods in org.docx4j.com.google.common.cache with parameters of type SupplierModifier and TypeMethodDescriptionstatic <V> CacheLoader<Object,V> Returns a cache loader based on an existing supplier instance.