Uses of Interface
org.docx4j.com.google.common.base.Supplier
Packages that use Supplier
-
Uses of Supplier in org.docx4j.com.google.common.base
Classes in org.docx4j.com.google.common.base that implement SupplierModifier and TypeClassDescription(package private) static class(package private) static class(package private) static classprivate static classprivate static classprivate static classFields in org.docx4j.com.google.common.base declared as SupplierModifier and TypeFieldDescriptionSuppliers.ExpiringMemoizingSupplier.delegateSuppliers.MemoizingSupplier.delegateSuppliers.NonSerializableMemoizingSupplier.delegateSuppliers.ThreadSafeSupplier.delegateSuppliers.SupplierComposition.supplierMethods 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.Constructors in org.docx4j.com.google.common.base with parameters of type SupplierModifierConstructorDescription(package private)ExpiringMemoizingSupplier(Supplier<T> delegate, long duration, TimeUnit unit) (package private)MemoizingSupplier(Supplier<T> delegate) (package private)NonSerializableMemoizingSupplier(Supplier<T> delegate) (package private)(package private)ThreadSafeSupplier(Supplier<T> delegate) -
Uses of Supplier in org.docx4j.com.google.common.cache
Fields in org.docx4j.com.google.common.cache declared as SupplierModifier and TypeFieldDescription(package private) static final Supplier<AbstractCache.StatsCounter>CacheBuilder.CACHE_STATS_COUNTERCacheLoader.SupplierToCacheLoader.computingSupplier(package private) static final Supplier<? extends AbstractCache.StatsCounter>CacheBuilder.NULL_STATS_COUNTER(package private) Supplier<? extends AbstractCache.StatsCounter>CacheBuilder.statsCounterSupplierprivate static final Supplier<LongAddable>LongAddables.SUPPLIERMethods in org.docx4j.com.google.common.cache that return SupplierModifier and TypeMethodDescription(package private) Supplier<? extends AbstractCache.StatsCounter>CacheBuilder.getStatsCounterSupplier()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.Constructors in org.docx4j.com.google.common.cache with parameters of type Supplier