Uses of Interface
javax.cache.Cache.Entry
Packages that use Cache.Entry
Package
Description
This package contains the API for JCache.
This package contains event listener interfaces.
This package contains interfaces for integration.
This package contains the API for Entry Processors.
-
Uses of Cache.Entry in javax.cache
Subinterfaces with type arguments of type Cache.Entry in javax.cacheModifier and TypeInterfaceDescriptioninterfaceCache<K,V> ACacheis a Map-like data structure that provides temporary storage of application data.Methods in javax.cache that return types with arguments of type Cache.Entry -
Uses of Cache.Entry in javax.cache.event
Classes in javax.cache.event that implement Cache.Entry -
Uses of Cache.Entry in javax.cache.integration
Methods in javax.cache.integration with parameters of type Cache.EntryModifier and TypeMethodDescriptionvoidCacheWriter.write(Cache.Entry<? extends K, ? extends V> entry) Write the specified value under the specified key to the external resource.Method parameters in javax.cache.integration with type arguments of type Cache.EntryModifier and TypeMethodDescriptionvoidCacheWriter.writeAll(Collection<Cache.Entry<? extends K, ? extends V>> entries) Write the specified entries to the external resource. -
Uses of Cache.Entry in javax.cache.processor
Subinterfaces of Cache.Entry in javax.cache.processorModifier and TypeInterfaceDescriptioninterfaceMutableEntry<K,V> A mutable representation of aCache.Entry.