Uses of Class
org.springframework.util.function.SingletonSupplier
Packages that use SingletonSupplier Package Description org.springframework.cache.interceptor AOP-based solution for declarative caching demarcation.org.springframework.util.function Useful genericjava.util.functionhelper classes.Uses of SingletonSupplier in org.springframework.cache.interceptor
Fields in org.springframework.cache.interceptor declared as SingletonSupplier Modifier and Type Field Description protected SingletonSupplier<CacheErrorHandler>AbstractCacheInvoker. errorHandlerUses of SingletonSupplier in org.springframework.util.function
Methods in org.springframework.util.function that return SingletonSupplier Modifier and Type Method Description static <T> SingletonSupplier<T>SingletonSupplier. of(Supplier<T> supplier)Build aSingletonSupplierwith the given supplier.static <T> SingletonSupplier<T>SingletonSupplier. of(T instance)Build aSingletonSupplierwith the given singleton instance.static <T> SingletonSupplier<T>SingletonSupplier. ofNullable(Supplier<T> supplier)Build aSingletonSupplierwith the given supplier.static <T> SingletonSupplier<T>SingletonSupplier. ofNullable(T instance)Build aSingletonSupplierwith the given singleton instance.