Uses of Class
org.cache2k.annotation.NonNull
-
Packages that use NonNull Package Description org.cache2k Main package for cache2k API containing functions to build and access a cache.org.cache2k.config The cache configuration as a Java bean and support types.org.cache2k.io Loader and writer to integrate with external data sources. -
-
Uses of NonNull in org.cache2k
Methods in org.cache2k with annotations of type NonNull Modifier and Type Method Description protected abstract @NonNull Cache<K,V>
ForwardingCache. delegate()
Subclasses need to implement this method which specifies the delegation target. -
Uses of NonNull in org.cache2k.config
Methods in org.cache2k.config with annotations of type NonNull Modifier and Type Method Description @NonNull Collection<CustomizationSupplier<CacheEntryOperationListener<K,V>>>
Cache2kConfig. getAsyncListeners()
A set of listeners.@NonNull Set<Feature>
Cache2kConfig. getFeatures()
@NonNull Collection<CustomizationSupplier<? extends CacheLifecycleListener>>
Cache2kConfig. getLifecycleListeners()
A set of listeners.@NonNull Collection<CustomizationSupplier<CacheEntryOperationListener<K,V>>>
Cache2kConfig. getListeners()
A set of listeners.Method parameters in org.cache2k.config with annotations of type NonNull Modifier and Type Method Description void
Cache2kConfig. setFeatures(@NonNull Set<? extends Feature> v)
void
Cache2kConfig. setLifecycleListeners(@NonNull Collection<CustomizationSupplier<? extends CacheLifecycleListener>> c)
Adds the collection of customizations to the existing list.Constructor parameters in org.cache2k.config with annotations of type NonNull Constructor Description CustomizationReferenceSupplier(@NonNull T obj)
Construct a customization factory that returns always the same object instance. -
Uses of NonNull in org.cache2k.io
Methods in org.cache2k.io with annotations of type NonNull Modifier and Type Method Description @NonNull Throwable
LoadExceptionInfo. getException()
The original exception generated by the last recent loader call.
-