- Cache<K,V> - Interface in javax.cache
-
A
Cache
is a Map-like data structure that provides temporary storage
of application data.
- Cache.Entry<K,V> - Interface in javax.cache
-
A cache entry (key-value pair).
- CacheDefaults - Annotation Type in javax.cache.annotation
-
- CacheEntryCreatedListener<K,V> - Interface in javax.cache.event
-
Invoked after a cache entry is created, or if a batch call is made, after the
entries are created.
- CacheEntryEvent<K,V> - Class in javax.cache.event
-
A Cache entry event base class.
- CacheEntryEvent(Cache, EventType) - Constructor for class javax.cache.event.CacheEntryEvent
-
Constructs a cache entry event from a given cache as source
- CacheEntryEventFilter<K,V> - Interface in javax.cache.event
-
- CacheEntryExpiredListener<K,V> - Interface in javax.cache.event
-
Invoked if a cache entry or entries are evicted due to expiration.
- CacheEntryListener<K,V> - Interface in javax.cache.event
-
A tagging interface for cache entry listeners.
- CacheEntryListenerConfiguration<K,V> - Interface in javax.cache.configuration
-
- CacheEntryListenerException - Exception in javax.cache.event
-
An exception to indicate a problem has occurred with a listener.
- CacheEntryListenerException() - Constructor for exception javax.cache.event.CacheEntryListenerException
-
Constructs a new CacheEntryListenerException.
- CacheEntryListenerException(String) - Constructor for exception javax.cache.event.CacheEntryListenerException
-
Constructs a new CacheEntryListenerException with a message string.
- CacheEntryListenerException(String, Throwable) - Constructor for exception javax.cache.event.CacheEntryListenerException
-
Constructs a CacheEntryListenerException with a message string, and
a base exception
- CacheEntryListenerException(Throwable) - Constructor for exception javax.cache.event.CacheEntryListenerException
-
Constructs a new CacheEntryListenerException with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(that typically contains the class and detail message of
cause).
- CacheEntryRemovedListener<K,V> - Interface in javax.cache.event
-
Invoked if a cache entry is removed, or if a batch call is made, after the
entries are removed.
- CacheEntryUpdatedListener<K,V> - Interface in javax.cache.event
-
Invoked if an existing cache entry is updated, or if a batch call is made,
after the entries are updated.
- CacheException - Exception in javax.cache
-
Thrown to indicate an exception has occurred in the Cache.
- CacheException() - Constructor for exception javax.cache.CacheException
-
Constructs a new CacheException.
- CacheException(String) - Constructor for exception javax.cache.CacheException
-
Constructs a new CacheException with a message string.
- CacheException(String, Throwable) - Constructor for exception javax.cache.CacheException
-
Constructs a CacheException with a message string, and
a base exception
- CacheException(Throwable) - Constructor for exception javax.cache.CacheException
-
Constructs a new CacheException with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(that typically contains the class and detail message of
cause).
- CacheInvocationContext<A extends Annotation> - Interface in javax.cache.annotation
-
- CacheInvocationParameter - Interface in javax.cache.annotation
-
A parameter to an intercepted method invocation.
- CacheKey - Annotation Type in javax.cache.annotation
-
Marks a method argument as part of the cache key.
- CacheKeyGenerator - Interface in javax.cache.annotation
-
- CacheKeyInvocationContext<A extends Annotation> - Interface in javax.cache.annotation
-
- CacheLoader<K,V> - Interface in javax.cache.integration
-
- CacheLoaderException - Exception in javax.cache.integration
-
An exception to indicate a problem has occurred executing a
CacheLoader
.
- CacheLoaderException() - Constructor for exception javax.cache.integration.CacheLoaderException
-
Constructs a new CacheLoaderException.
- CacheLoaderException(String) - Constructor for exception javax.cache.integration.CacheLoaderException
-
Constructs a new CacheLoaderException with a message string.
- CacheLoaderException(String, Throwable) - Constructor for exception javax.cache.integration.CacheLoaderException
-
Constructs a CacheLoaderException with a message string, and
a base exception
- CacheLoaderException(Throwable) - Constructor for exception javax.cache.integration.CacheLoaderException
-
Constructs a new CacheLoaderException with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(that typically contains the class and detail message of
cause).
- cacheLoaderFactory - Variable in class javax.cache.configuration.MutableConfiguration
-
- CacheManager - Interface in javax.cache
-
A
CacheManager
provides a means of establishing, configuring,
acquiring, closing and destroying uniquely named
Cache
s.
- CacheMethodDetails<A extends Annotation> - Interface in javax.cache.annotation
-
- CacheMXBean - Interface in javax.cache.management
-
A management bean for cache.
- CachePut - Annotation Type in javax.cache.annotation
-
- CacheRemove - Annotation Type in javax.cache.annotation
-
- CacheRemoveAll - Annotation Type in javax.cache.annotation
-
- CacheResolver - Interface in javax.cache.annotation
-
Determines the
Cache
to use for an intercepted method invocation.
- CacheResolverFactory - Interface in javax.cache.annotation
-
- CacheResult - Annotation Type in javax.cache.annotation
-
- CacheStatisticsMXBean - Interface in javax.cache.management
-
Cache statistics.
- CacheValue - Annotation Type in javax.cache.annotation
-
Marks the parameter to be cached for a method annotated with
CachePut
.
- CacheWriter<K,V> - Interface in javax.cache.integration
-
A CacheWriter is used for write-through to an external resource.
- CacheWriterException - Exception in javax.cache.integration
-
An exception to indicate a problem has occurred executing a
CacheWriter
.
- CacheWriterException() - Constructor for exception javax.cache.integration.CacheWriterException
-
Constructs a new CacheWriterException.
- CacheWriterException(String) - Constructor for exception javax.cache.integration.CacheWriterException
-
Constructs a new CacheWriterException with a message string.
- CacheWriterException(String, Throwable) - Constructor for exception javax.cache.integration.CacheWriterException
-
Constructs a CacheWriterException with a message string, and
a base exception
- CacheWriterException(Throwable) - Constructor for exception javax.cache.integration.CacheWriterException
-
Constructs a new CacheWriterException with the specified cause and a
detail message of (cause==null ? null : cause.toString())
(that typically contains the class and detail message of
cause).
- cacheWriterFactory - Variable in class javax.cache.configuration.MutableConfiguration
-
- Caching - Class in javax.cache
-
The
Caching
class provides a convenient means for an application to
acquire an appropriate
CachingProvider
implementation.
- CachingProvider - Interface in javax.cache.spi
-
Provides mechanisms to create, request and later manage the life-cycle of
configured
CacheManager
s, identified by
URI
s and scoped by
ClassLoader
s.
- cancel(boolean) - Method in class javax.cache.integration.CompletionListenerFuture
-
Cancelling is not supported, always throws exception.
- ClassFactory(Class<T>) - Constructor for class javax.cache.configuration.FactoryBuilder.ClassFactory
-
- ClassFactory(String) - Constructor for class javax.cache.configuration.FactoryBuilder.ClassFactory
-
- clear() - Method in interface javax.cache.Cache
-
Clears the contents of the cache, without notifying listeners or
CacheWriter
s.
- clear() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
Clears the statistics counters to 0 for the associated Cache.
- close() - Method in interface javax.cache.Cache
-
Closing a
Cache
signals to the
CacheManager
that produced or
owns the
Cache
that it should no longer be managed.
- close() - Method in interface javax.cache.CacheManager
-
- close() - Method in interface javax.cache.spi.CachingProvider
-
- close(ClassLoader) - Method in interface javax.cache.spi.CachingProvider
-
- close(URI, ClassLoader) - Method in interface javax.cache.spi.CachingProvider
-
- CompleteConfiguration<K,V> - Interface in javax.cache.configuration
-
A read-only representation of the complete JCache
Cache
configuration.
- CompletionListener - Interface in javax.cache.integration
-
A CompletionListener is implemented by an application when it needs to be
notified of the completion of some Cache operation.
- CompletionListenerFuture - Class in javax.cache.integration
-
A CompletionListenerFuture is a CompletionListener implementation that
supports being used as a Future.
- CompletionListenerFuture() - Constructor for class javax.cache.integration.CompletionListenerFuture
-
Constructs a CompletionListenerFuture.
- Configuration<K,V> - Interface in javax.cache.configuration
-
A basic read-only representation of a
Cache
configuration.
- containsKey(K) - Method in interface javax.cache.Cache
-
Determines if the
Cache
contains an entry for the specified key.
- create() - Method in interface javax.cache.configuration.Factory
-
Constructs and returns a fully configured instance of T.
- create() - Method in class javax.cache.configuration.FactoryBuilder.ClassFactory
-
- create() - Method in class javax.cache.configuration.FactoryBuilder.SingletonFactory
-
- createCache(String, C) - Method in interface javax.cache.CacheManager
-
Creates a named
Cache
at runtime.
- CREATED - javax.cache.event.EventType
-
An event type indicating that the cache entry was created.
- CreatedExpiryPolicy - Class in javax.cache.expiry
-
- CreatedExpiryPolicy(Duration) - Constructor for class javax.cache.expiry.CreatedExpiryPolicy
-
- generateCacheKey(CacheKeyInvocationContext<? extends Annotation>) - Method in interface javax.cache.annotation.CacheKeyGenerator
-
- GeneratedCacheKey - Interface in javax.cache.annotation
-
- get() - Method in class javax.cache.integration.CompletionListenerFuture
-
Waits if necessary for the operation to complete.
- get() - Method in interface javax.cache.processor.EntryProcessorResult
-
- get(long, TimeUnit) - Method in class javax.cache.integration.CompletionListenerFuture
-
Waits if necessary for at most the given time for the operation
to complete.
- get(K) - Method in interface javax.cache.Cache
-
Gets an entry from the cache.
- getAdjustedTime(long) - Method in class javax.cache.expiry.Duration
-
Calculates the adjusted time (represented in milliseconds from the Epoc)
given a specified time in milliseconds (to be adjusted) by the duration.
- getAll(Set<? extends K>) - Method in interface javax.cache.Cache
-
Gets a collection of entries from the
Cache
, returning them as
Map
of the values associated with the set of keys requested.
- getAllParameters() - Method in interface javax.cache.annotation.CacheInvocationContext
-
Returns a clone of the array of all method parameters.
- getAndPut(K, V) - Method in interface javax.cache.Cache
-
Associates the specified value with the specified key in this cache,
returning an existing value if one existed.
- getAndRemove(K) - Method in interface javax.cache.Cache
-
Atomically removes the entry for a key only if currently mapped to some
value.
- getAndReplace(K, V) - Method in interface javax.cache.Cache
-
Atomically replaces the value for a given key if and only if there is a
value currently mapped by the key.
- getAnnotations() - Method in interface javax.cache.annotation.CacheInvocationParameter
-
- getAnnotations() - Method in interface javax.cache.annotation.CacheMethodDetails
-
An immutable Set of all Annotations on this method
- getAverageGetTime() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The mean time to execute gets.
- getAveragePutTime() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The mean time to execute puts.
- getAverageRemoveTime() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The mean time to execute removes.
- getCache(String) - Method in interface javax.cache.CacheManager
-
Looks up a managed
Cache
given its name.
- getCache(String, Class<K>, Class<V>) - Method in interface javax.cache.CacheManager
-
Looks up a managed
Cache
given its name.
- getCache(String, Class<K>, Class<V>) - Static method in class javax.cache.Caching
-
A convenience that method that looks up a managed
Cache
given its
name.
- getCacheAnnotation() - Method in interface javax.cache.annotation.CacheMethodDetails
-
The caching related annotation on the method.
- getCacheEntryEventFilterFactory() - Method in interface javax.cache.configuration.CacheEntryListenerConfiguration
-
- getCacheEntryEventFilterFactory() - Method in class javax.cache.configuration.MutableCacheEntryListenerConfiguration
-
- getCacheEntryListenerConfigurations() - Method in interface javax.cache.configuration.CompleteConfiguration
-
- getCacheEntryListenerConfigurations() - Method in class javax.cache.configuration.MutableConfiguration
-
- getCacheEntryListenerFactory() - Method in interface javax.cache.configuration.CacheEntryListenerConfiguration
-
- getCacheEntryListenerFactory() - Method in class javax.cache.configuration.MutableCacheEntryListenerConfiguration
-
- getCacheEvictions() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The total number of evictions from the cache.
- getCacheGets() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The total number of requests to the cache.
- getCacheHitPercentage() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
This is a measure of cache efficiency.
- getCacheHits() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The number of get requests that were satisfied by the cache.
- getCacheLoaderFactory() - Method in interface javax.cache.configuration.CompleteConfiguration
-
- getCacheLoaderFactory() - Method in class javax.cache.configuration.MutableConfiguration
-
- getCacheManager() - Method in interface javax.cache.Cache
-
- getCacheManager() - Method in interface javax.cache.spi.CachingProvider
-
- getCacheManager(URI, ClassLoader) - Method in interface javax.cache.spi.CachingProvider
-
Requests a
CacheManager
configured according to the implementation
specific
URI
that uses the provided
ClassLoader
for loading
underlying classes.
- getCacheManager(URI, ClassLoader, Properties) - Method in interface javax.cache.spi.CachingProvider
-
Requests a
CacheManager
configured according to the implementation
specific
URI
be made available that uses the provided
ClassLoader
for loading underlying classes.
- getCacheMisses() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
A miss is a get request that is not satisfied.
- getCacheMissPercentage() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
Returns the percentage of cache accesses that did not find a requested entry
in the cache.
- getCacheName() - Method in interface javax.cache.annotation.CacheMethodDetails
-
The cache name resolved by the implementation.
- getCacheNames() - Method in interface javax.cache.CacheManager
-
- getCachePuts() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The total number of puts to the cache.
- getCacheRemovals() - Method in interface javax.cache.management.CacheStatisticsMXBean
-
The total number of removals from the cache.
- getCacheResolver(CacheMethodDetails<? extends Annotation>) - Method in interface javax.cache.annotation.CacheResolverFactory
-
- getCacheWriterFactory() - Method in interface javax.cache.configuration.CompleteConfiguration
-
- getCacheWriterFactory() - Method in class javax.cache.configuration.MutableConfiguration
-
- getCachingProvider() - Method in interface javax.cache.CacheManager
-
- getCachingProvider() - Static method in class javax.cache.Caching
-
- getCachingProvider(ClassLoader) - Static method in class javax.cache.Caching
-
- getCachingProvider(String) - Static method in class javax.cache.Caching
-
- getCachingProvider(String, ClassLoader) - Static method in class javax.cache.Caching
-
- getCachingProviders() - Static method in class javax.cache.Caching
-
- getCachingProviders(ClassLoader) - Static method in class javax.cache.Caching
-
- getClassLoader() - Method in interface javax.cache.CacheManager
-
- getConfiguration(Class<C>) - Method in interface javax.cache.Cache
-
Provides a standard way to access the configuration of a cache using
JCache configuration or additional proprietary configuration.
- getDefaultClassLoader() - Static method in class javax.cache.Caching
-
Obtains the
ClassLoader
to use for API methods that don't
explicitly require a
ClassLoader
but internally require one.
- getDefaultClassLoader() - Method in interface javax.cache.spi.CachingProvider
-
- getDefaultProperties() - Method in interface javax.cache.spi.CachingProvider
-
- getDefaultURI() - Method in interface javax.cache.spi.CachingProvider
-
- getDurationAmount() - Method in class javax.cache.expiry.Duration
-
Obtain the number of TimeUnits in the Duration
- getEventType() - Method in class javax.cache.event.CacheEntryEvent
-
Gets the event type of this event
- getExceptionCacheResolver(CacheMethodDetails<CacheResult>) - Method in interface javax.cache.annotation.CacheResolverFactory
-
- getExpiryForAccess() - Method in class javax.cache.expiry.AccessedExpiryPolicy
-
Gets the
Duration
before an accessed Cache.Entry is
considered expired.
- getExpiryForAccess() - Method in class javax.cache.expiry.CreatedExpiryPolicy
-
Gets the
Duration
before an accessed Cache.Entry is
considered expired.
- getExpiryForAccess() - Method in class javax.cache.expiry.EternalExpiryPolicy
-
Gets the
Duration
before an accessed Cache.Entry is
considered expired.
- getExpiryForAccess() - Method in interface javax.cache.expiry.ExpiryPolicy
-
Gets the
Duration
before an accessed Cache.Entry is
considered expired.
- getExpiryForAccess() - Method in class javax.cache.expiry.ModifiedExpiryPolicy
-
Gets the
Duration
before an accessed Cache.Entry is
considered expired.
- getExpiryForAccess() - Method in class javax.cache.expiry.TouchedExpiryPolicy
-
Gets the
Duration
before an accessed Cache.Entry is
considered expired.
- getExpiryForCreation() - Method in class javax.cache.expiry.AccessedExpiryPolicy
-
Gets the
Duration
before a newly created Cache.Entry is considered
expired.
- getExpiryForCreation() - Method in class javax.cache.expiry.CreatedExpiryPolicy
-
Gets the
Duration
before a newly created Cache.Entry is considered
expired.
- getExpiryForCreation() - Method in class javax.cache.expiry.EternalExpiryPolicy
-
Gets the
Duration
before a newly created Cache.Entry is considered
expired.
- getExpiryForCreation() - Method in interface javax.cache.expiry.ExpiryPolicy
-
Gets the
Duration
before a newly created Cache.Entry is considered
expired.
- getExpiryForCreation() - Method in class javax.cache.expiry.ModifiedExpiryPolicy
-
Gets the
Duration
before a newly created Cache.Entry is considered
expired.
- getExpiryForCreation() - Method in class javax.cache.expiry.TouchedExpiryPolicy
-
Gets the
Duration
before a newly created Cache.Entry is considered
expired.
- getExpiryForUpdate() - Method in class javax.cache.expiry.AccessedExpiryPolicy
-
Gets the
Duration
before an updated Cache.Entry is considered
expired.
- getExpiryForUpdate() - Method in class javax.cache.expiry.CreatedExpiryPolicy
-
Gets the
Duration
before an updated Cache.Entry is considered
expired.
- getExpiryForUpdate() - Method in class javax.cache.expiry.EternalExpiryPolicy
-
Gets the
Duration
before an updated Cache.Entry is considered
expired.
- getExpiryForUpdate() - Method in interface javax.cache.expiry.ExpiryPolicy
-
Gets the
Duration
before an updated Cache.Entry is considered
expired.
- getExpiryForUpdate() - Method in class javax.cache.expiry.ModifiedExpiryPolicy
-
Gets the
Duration
before an updated Cache.Entry is considered
expired.
- getExpiryForUpdate() - Method in class javax.cache.expiry.TouchedExpiryPolicy
-
Gets the
Duration
before an updated Cache.Entry is considered
expired.
- getExpiryPolicyFactory() - Method in interface javax.cache.configuration.CompleteConfiguration
-
- getExpiryPolicyFactory() - Method in class javax.cache.configuration.MutableConfiguration
-
- getKey() - Method in interface javax.cache.Cache.Entry
-
Returns the key corresponding to this entry.
- getKeyParameters() - Method in interface javax.cache.annotation.CacheKeyInvocationContext
-
- getKeyType() - Method in interface javax.cache.configuration.Configuration
-
- getKeyType() - Method in class javax.cache.configuration.MutableConfiguration
-
- getKeyType() - Method in interface javax.cache.management.CacheMXBean
-
Determines the required type of keys for this
Cache
, if any.
- getMethod() - Method in interface javax.cache.annotation.CacheMethodDetails
-
The annotated method
- getName() - Method in interface javax.cache.Cache
-
Return the name of the cache.
- getOldValue() - Method in class javax.cache.event.CacheEntryEvent
-
Returns the previous value that existed for entry in the cache before
modification or removal.
- getParameterPosition() - Method in interface javax.cache.annotation.CacheInvocationParameter
-
- getProperties() - Method in interface javax.cache.CacheManager
-
- getRawType() - Method in interface javax.cache.annotation.CacheInvocationParameter
-
The parameter type as declared on the method.
- getSource() - Method in class javax.cache.event.CacheEntryEvent
- getTarget() - Method in interface javax.cache.annotation.CacheInvocationContext
-
- getTimeUnit() - Method in class javax.cache.expiry.Duration
-
Obtain the TimeUnit for the Duration
- getURI() - Method in interface javax.cache.CacheManager
-
- getValue() - Method in interface javax.cache.annotation.CacheInvocationParameter
-
- getValue() - Method in interface javax.cache.Cache.Entry
-
Returns the value stored in the cache when this entry was created.
- getValue() - Method in class javax.cache.event.CacheEntryEvent
-
Returns the value stored in the cache when this entry was created or updated.
- getValue() - Method in interface javax.cache.processor.MutableEntry
-
Returns the value stored in the cache.
- getValueParameter() - Method in interface javax.cache.annotation.CacheKeyInvocationContext
-
- getValueType() - Method in interface javax.cache.configuration.Configuration
-
- getValueType() - Method in class javax.cache.configuration.MutableConfiguration
-
- getValueType() - Method in interface javax.cache.management.CacheMXBean
-
Determines the required type of values for this
Cache
, if any.
- invoke(K, EntryProcessor<K, V, T>, Object...) - Method in interface javax.cache.Cache
-
- invokeAll(Set<? extends K>, EntryProcessor<K, V, T>, Object...) - Method in interface javax.cache.Cache
-
- isCancelled() - Method in class javax.cache.integration.CompletionListenerFuture
-
Cancelling is not supported, always returns false
- isClosed() - Method in interface javax.cache.Cache
-
Determines whether this Cache instance has been closed.
- isClosed() - Method in interface javax.cache.CacheManager
-
Determines whether the
CacheManager
instance has been closed.
- isDone() - Method in class javax.cache.integration.CompletionListenerFuture
-
- isEternal() - Method in class javax.cache.expiry.Duration
-
Determines if a
Duration
is eternal (forever).
- isManagementEnabled - Variable in class javax.cache.configuration.MutableConfiguration
-
Whether management is enabled
- isManagementEnabled() - Method in interface javax.cache.configuration.CompleteConfiguration
-
Checks whether management is enabled on this cache.
- isManagementEnabled() - Method in class javax.cache.configuration.MutableConfiguration
-
Checks whether management is enabled on this cache.
- isManagementEnabled() - Method in interface javax.cache.management.CacheMXBean
-
Checks whether management is enabled on this cache.
- isOldValueAvailable() - Method in class javax.cache.event.CacheEntryEvent
-
Whether the old value is available.
- isOldValueRequired() - Method in interface javax.cache.configuration.CacheEntryListenerConfiguration
-
- isOldValueRequired() - Method in class javax.cache.configuration.MutableCacheEntryListenerConfiguration
-
- isReadThrough - Variable in class javax.cache.configuration.MutableConfiguration
-
A flag indicating if "read-through" mode is required.
- isReadThrough() - Method in interface javax.cache.configuration.CompleteConfiguration
-
Determines if a
Cache
should operate in read-through mode.
- isReadThrough() - Method in class javax.cache.configuration.MutableConfiguration
-
Determines if a
Cache
should operate in read-through mode.
- isReadThrough() - Method in interface javax.cache.management.CacheMXBean
-
Determines if a
Cache
should operate in read-through mode.
- isStatisticsEnabled - Variable in class javax.cache.configuration.MutableConfiguration
-
A flag indicating if statistics gathering is enabled.
- isStatisticsEnabled() - Method in interface javax.cache.configuration.CompleteConfiguration
-
Checks whether statistics collection is enabled in this cache.
- isStatisticsEnabled() - Method in class javax.cache.configuration.MutableConfiguration
-
Checks whether statistics collection is enabled in this cache.
- isStatisticsEnabled() - Method in interface javax.cache.management.CacheMXBean
-
Checks whether statistics collection is enabled in this cache.
- isStoreByValue - Variable in class javax.cache.configuration.MutableConfiguration
-
A flag indicating if the cache will be store-by-value or store-by-reference.
- isStoreByValue() - Method in interface javax.cache.configuration.Configuration
-
Whether storeByValue (true) or storeByReference (false).
- isStoreByValue() - Method in class javax.cache.configuration.MutableConfiguration
-
Whether storeByValue (true) or storeByReference (false).
- isStoreByValue() - Method in interface javax.cache.management.CacheMXBean
-
Whether storeByValue (true) or storeByReference (false).
- isSupported(OptionalFeature) - Method in interface javax.cache.spi.CachingProvider
-
Determines whether an optional feature is supported by the
CachingProvider
.
- isSynchronous() - Method in interface javax.cache.configuration.CacheEntryListenerConfiguration
-
Determines if the thread that caused an event to be created should be
blocked (not return from the operation causing the event) until the
CacheEntryListener
has been notified.
- isSynchronous() - Method in class javax.cache.configuration.MutableCacheEntryListenerConfiguration
-
Determines if the thread that caused an event to be created should be
blocked (not return from the operation causing the event) until the
CacheEntryListener
has been notified.
- isWriteThrough - Variable in class javax.cache.configuration.MutableConfiguration
-
A flag indicating if "write-through" mode is required.
- isWriteThrough() - Method in interface javax.cache.configuration.CompleteConfiguration
-
Determines if a
Cache
should operate in write-through
mode.
- isWriteThrough() - Method in class javax.cache.configuration.MutableConfiguration
-
Determines if a
Cache
should operate in write-through
mode.
- isWriteThrough() - Method in interface javax.cache.management.CacheMXBean
-
Determines if a
Cache
should operate in "write-through"
mode.
- isZero() - Method in class javax.cache.expiry.Duration
-
- iterator() - Method in interface javax.cache.Cache