SYMBOL INDEX (334 symbols across 49 files) FILE: src/main/java/javax/cache/Cache.java type Cache (line 80) | public interface Cache extends Iterable>, Closea... method get (line 98) | V get(K key); method getAll (line 121) | Map getAll(Set keys); method containsKey (line 144) | boolean containsKey(K key); method loadAll (line 181) | void loadAll(Set keys, boolean replaceExistingValues, method put (line 210) | void put(K key, V value); method getAndPut (line 244) | V getAndPut(K key, V value); method putAll (line 278) | void putAll(java.util.Map map); method putIfAbsent (line 310) | boolean putIfAbsent(K key, V value); method remove (line 340) | boolean remove(K key); method remove (line 372) | boolean remove(K key, V oldValue); method getAndRemove (line 405) | V getAndRemove(K key); method replace (line 438) | boolean replace(K key, V oldValue, V newValue); method replace (line 470) | boolean replace(K key, V value); method getAndReplace (line 505) | V getAndReplace(K key, V value); method removeAll (line 528) | void removeAll(Set keys); method removeAll (line 550) | void removeAll(); method clear (line 559) | void clear(); method getConfiguration (line 578) | > C getConfiguration(Class clazz); method invoke (line 603) | T invoke(K key, method invokeAll (line 640) | Map> invokeAll(Set keys, method getName (line 650) | String getName(); method getCacheManager (line 658) | CacheManager getCacheManager(); method close (line 694) | void close(); method isClosed (line 713) | boolean isClosed(); method unwrap (line 731) | T unwrap(java.lang.Class clazz); method registerCacheEntryListener (line 746) | void registerCacheEntryListener( method deregisterCacheEntryListener (line 763) | void deregisterCacheEntryListener(CacheEntryListenerConfiguration method iterator (line 781) | Iterator> iterator(); type Entry (line 786) | interface Entry { method getKey (line 793) | K getKey(); method getValue (line 800) | V getValue(); method unwrap (line 816) | T unwrap(Class clazz); FILE: src/main/java/javax/cache/CacheException.java class CacheException (line 28) | public class CacheException extends RuntimeException { method CacheException (line 36) | public CacheException() { method CacheException (line 47) | public CacheException(String message) { method CacheException (line 63) | public CacheException(String message, Throwable cause) { method CacheException (line 80) | public CacheException(Throwable cause) { FILE: src/main/java/javax/cache/CacheManager.java type CacheManager (line 76) | public interface CacheManager extends Closeable { method getCachingProvider (line 85) | CachingProvider getCachingProvider(); method getURI (line 92) | URI getURI(); method getClassLoader (line 99) | ClassLoader getClassLoader(); method getProperties (line 111) | Properties getProperties(); method createCache (line 158) | > Cache createCache(String c... method getCache (line 194) | Cache getCache(String cacheName, Class keyType, method getCache (line 221) | Cache getCache(String cacheName); method getCacheNames (line 244) | Iterable getCacheNames(); method destroyCache (line 270) | void destroyCache(String cacheName); method enableManagement (line 300) | void enableManagement(String cacheName, boolean enabled); method enableStatistics (line 326) | void enableStatistics(String cacheName, boolean enabled); method close (line 357) | void close(); method isClosed (line 377) | boolean isClosed(); method unwrap (line 395) | T unwrap(java.lang.Class clazz); FILE: src/main/java/javax/cache/Caching.java class Caching (line 95) | public final class Caching { method Caching (line 112) | private Caching() { method getDefaultClassLoader (line 123) | public static ClassLoader getDefaultClassLoader() { method setDefaultClassLoader (line 135) | public static void setDefaultClassLoader(ClassLoader classLoader) { method getCachingProvider (line 150) | public static CachingProvider getCachingProvider() { method getCachingProvider (line 168) | public static CachingProvider getCachingProvider(ClassLoader classLoad... method getCachingProviders (line 186) | public static Iterable getCachingProviders() { method getCachingProviders (line 206) | public static Iterable getCachingProviders( method getCachingProvider (line 225) | public static CachingProvider getCachingProvider(String fullyQualified... method getCachingProvider (line 245) | public static CachingProvider getCachingProvider(String fullyQualified... method getCache (line 286) | public static Cache getCache(String cacheName, Class k... class CachingProviderRegistry (line 297) | private static class CachingProviderRegistry { method CachingProviderRegistry (line 315) | public CachingProviderRegistry() { method getDefaultClassLoader (line 329) | public ClassLoader getDefaultClassLoader() { method setDefaultClassLoader (line 342) | public void setDefaultClassLoader(ClassLoader classLoader) { method getCachingProvider (line 360) | public CachingProvider getCachingProvider() { method getCachingProvider (line 379) | public CachingProvider getCachingProvider(ClassLoader classLoader) { method getCachingProviders (line 409) | public Iterable getCachingProviders() { method getCachingProviders (line 429) | public synchronized Iterable getCachingProviders(Cl... method getCachingProvider (line 475) | public CachingProvider getCachingProvider(String fullyQualifiedClass... method loadCachingProvider (line 492) | protected CachingProvider loadCachingProvider(String fullyQualifiedC... method getCachingProvider (line 521) | public synchronized CachingProvider getCachingProvider(String fullyQ... FILE: src/main/java/javax/cache/annotation/CacheInvocationContext.java type CacheInvocationContext (line 36) | public interface CacheInvocationContext method getTarget (line 42) | Object getTarget(); method getAllParameters (line 49) | CacheInvocationParameter[] getAllParameters(); method unwrap (line 64) | T unwrap(java.lang.Class cls); FILE: src/main/java/javax/cache/annotation/CacheInvocationParameter.java type CacheInvocationParameter (line 28) | public interface CacheInvocationParameter { method getRawType (line 33) | Class getRawType(); method getValue (line 38) | Object getValue(); method getAnnotations (line 44) | Set getAnnotations(); method getParameterPosition (line 52) | int getParameterPosition(); FILE: src/main/java/javax/cache/annotation/CacheKeyGenerator.java type CacheKeyGenerator (line 30) | public interface CacheKeyGenerator { method generateCacheKey (line 40) | GeneratedCacheKey generateCacheKey(CacheKeyInvocationContext method getKeyParameters (line 58) | CacheInvocationParameter[] getKeyParameters(); method getValueParameter (line 68) | CacheInvocationParameter getValueParameter(); FILE: src/main/java/javax/cache/annotation/CacheMethodDetails.java type CacheMethodDetails (line 37) | public interface CacheMethodDetails { method getMethod (line 43) | Method getMethod(); method getAnnotations (line 50) | Set getAnnotations(); method getCacheAnnotation (line 59) | A getCacheAnnotation(); method getCacheName (line 89) | String getCacheName(); FILE: src/main/java/javax/cache/annotation/CacheResolver.java type CacheResolver (line 31) | public interface CacheResolver { method resolveCache (line 42) | Cache resolveCache(CacheInvocationContext method getExceptionCacheResolver (line 56) | CacheResolver getExceptionCacheResolver(CacheMethodDetails FILE: src/main/java/javax/cache/annotation/GeneratedCacheKey.java type GeneratedCacheKey (line 35) | public interface GeneratedCacheKey extends Serializable { method hashCode (line 43) | @Override method equals (line 54) | @Override FILE: src/main/java/javax/cache/configuration/CacheEntryListenerConfiguration.java type CacheEntryListenerConfiguration (line 34) | public interface CacheEntryListenerConfiguration extends Serializa... method getCacheEntryListenerFactory (line 42) | Factory> getCacheEntryListene... method isOldValueRequired (line 51) | boolean isOldValueRequired(); method getCacheEntryEventFilterFactory (line 64) | Factory> method isSynchronous (line 74) | boolean isSynchronous(); FILE: src/main/java/javax/cache/configuration/CompleteConfiguration.java type CompleteConfiguration (line 43) | public interface CompleteConfiguration extends Configuration, method isReadThrough (line 60) | boolean isReadThrough(); method isWriteThrough (line 86) | boolean isWriteThrough(); method isStatisticsEnabled (line 95) | boolean isStatisticsEnabled(); method isManagementEnabled (line 104) | boolean isManagementEnabled(); method getCacheEntryListenerConfigurations (line 114) | Iterable> getCacheLoaderFactory(); method getCacheWriterFactory (line 142) | Factory> getCacheWriterFactory(); method getExpiryPolicyFactory (line 154) | Factory getExpiryPolicyFactory(); FILE: src/main/java/javax/cache/configuration/Configuration.java type Configuration (line 39) | public interface Configuration extends Serializable { method getKeyType (line 47) | Class getKeyType(); method getValueType (line 55) | Class getValueType(); method isStoreByValue (line 81) | boolean isStoreByValue(); FILE: src/main/java/javax/cache/configuration/Factory.java type Factory (line 35) | public interface Factory extends Serializable { method create (line 42) | T create(); FILE: src/main/java/javax/cache/configuration/FactoryBuilder.java class FactoryBuilder (line 45) | public final class FactoryBuilder { method FactoryBuilder (line 50) | private FactoryBuilder() { method factoryOf (line 65) | public static Factory factoryOf(Class clazz) { method factoryOf (line 80) | public static Factory factoryOf(String className) { method factoryOf (line 95) | public static Factory factoryOf(T instance) { class ClassFactory (line 105) | public static class ClassFactory implements Factory, Serializable { method ClassFactory (line 122) | public ClassFactory(Class clazz) { method ClassFactory (line 131) | public ClassFactory(String className) { method create (line 135) | @Override method equals (line 148) | @Override method hashCode (line 160) | @Override class SingletonFactory (line 173) | public static class SingletonFactory implements Factory, Seriali... method SingletonFactory (line 190) | public SingletonFactory(T instance) { method create (line 194) | @Override method equals (line 199) | @Override method hashCode (line 211) | @Override FILE: src/main/java/javax/cache/configuration/MutableCacheEntryListenerConfiguration.java class MutableCacheEntryListenerConfiguration (line 31) | public class MutableCacheEntryListenerConfiguration method MutableCacheEntryListenerConfiguration (line 67) | public MutableCacheEntryListenerConfiguration(CacheEntryListenerConfig... method MutableCacheEntryListenerConfiguration (line 82) | public MutableCacheEntryListenerConfiguration(Factory setCacheEntryListe... method getCacheEntryEventFilterFactory (line 117) | @Override method setCacheEntryEventFilterFactory (line 130) | public MutableCacheEntryListenerConfiguration setCacheEntryEvent... method isOldValueRequired (line 139) | @Override method setOldValueRequired (line 151) | public MutableCacheEntryListenerConfiguration setOldValueRequired( method isSynchronous (line 160) | @Override method setSynchronous (line 174) | public MutableCacheEntryListenerConfiguration setSynchronous( method hashCode (line 184) | @Override method equals (line 199) | @Override FILE: src/main/java/javax/cache/configuration/MutableConfiguration.java class MutableConfiguration (line 37) | public class MutableConfiguration implements CompleteConfiguration... method MutableConfiguration (line 122) | public MutableConfiguration() { method MutableConfiguration (line 145) | public MutableConfiguration(CompleteConfiguration configuration) { method getKeyType (line 179) | @Override method getValueType (line 187) | @Override method setTypes (line 210) | public MutableConfiguration setTypes(Class keyType, Class ... method getCacheEntryListenerConfigurations (line 223) | @Override method addCacheEntryListenerConfiguration (line 238) | public MutableConfiguration addCacheEntryListenerConfiguration( method removeCacheEntryListenerConfiguration (line 268) | public MutableConfiguration removeCacheEntryListenerConfiguration( method getCacheLoaderFactory (line 283) | @Override method setCacheLoaderFactory (line 294) | public MutableConfiguration setCacheLoaderFactory(Factory setCacheWriterFactory(Factory getExpiryPolicyFactory() { method setExpiryPolicyFactory (line 336) | public MutableConfiguration setExpiryPolicyFactory(Factory setReadThrough(boolean isReadThrough) { method isWriteThrough (line 371) | @Override method setWriteThrough (line 385) | public MutableConfiguration setWriteThrough(boolean isWriteThrou... method isStoreByValue (line 393) | @Override method setStoreByValue (line 406) | public MutableConfiguration setStoreByValue(boolean isStoreByVal... method isStatisticsEnabled (line 414) | @Override method setStatisticsEnabled (line 428) | public MutableConfiguration setStatisticsEnabled(boolean enabled) { method isManagementEnabled (line 436) | @Override method setManagementEnabled (line 450) | public MutableConfiguration setManagementEnabled(boolean enabled) { method hashCode (line 459) | @Override method equals (line 485) | @Override FILE: src/main/java/javax/cache/configuration/OptionalFeature.java type OptionalFeature (line 26) | public enum OptionalFeature { FILE: src/main/java/javax/cache/event/CacheEntryCreatedListener.java type CacheEntryCreatedListener (line 33) | public interface CacheEntryCreatedListener extends CacheEntryListe... method onCreated (line 41) | void onCreated(Iterable> eve... FILE: src/main/java/javax/cache/event/CacheEntryEvent.java class CacheEntryEvent (line 31) | public abstract class CacheEntryEvent extends EventObject method CacheEntryEvent (line 42) | public CacheEntryEvent(Cache source, EventType eventType) { method getSource (line 50) | @Override method getValue (line 70) | @Override method getOldValue (line 88) | public abstract V getOldValue(); method isOldValueAvailable (line 101) | public abstract boolean isOldValueAvailable(); method getEventType (line 108) | public final EventType getEventType() { FILE: src/main/java/javax/cache/event/CacheEntryEventFilter.java type CacheEntryEventFilter (line 31) | public interface CacheEntryEventFilter { method evaluate (line 41) | boolean evaluate(CacheEntryEvent event) FILE: src/main/java/javax/cache/event/CacheEntryExpiredListener.java type CacheEntryExpiredListener (line 28) | public interface CacheEntryExpiredListener extends CacheEntryListe... method onExpired (line 37) | void onExpired(Iterable> eve... FILE: src/main/java/javax/cache/event/CacheEntryListener.java type CacheEntryListener (line 62) | public interface CacheEntryListener extends EventListener { FILE: src/main/java/javax/cache/event/CacheEntryListenerException.java class CacheEntryListenerException (line 29) | public class CacheEntryListenerException extends CacheException { method CacheEntryListenerException (line 37) | public CacheEntryListenerException() { method CacheEntryListenerException (line 47) | public CacheEntryListenerException(String message) { method CacheEntryListenerException (line 63) | public CacheEntryListenerException(String message, Throwable cause) { method CacheEntryListenerException (line 81) | public CacheEntryListenerException(Throwable cause) { FILE: src/main/java/javax/cache/event/CacheEntryRemovedListener.java type CacheEntryRemovedListener (line 29) | public interface CacheEntryRemovedListener extends CacheEntryListe... method onRemoved (line 38) | void onRemoved(Iterable> eve... FILE: src/main/java/javax/cache/event/CacheEntryUpdatedListener.java type CacheEntryUpdatedListener (line 30) | public interface CacheEntryUpdatedListener extends CacheEntryListe... method onUpdated (line 38) | void onUpdated(Iterable> eve... FILE: src/main/java/javax/cache/event/EventType.java type EventType (line 25) | public enum EventType { FILE: src/main/java/javax/cache/expiry/AccessedExpiryPolicy.java class AccessedExpiryPolicy (line 32) | public final class AccessedExpiryPolicy implements ExpiryPolicy, Seriali... method AccessedExpiryPolicy (line 50) | public AccessedExpiryPolicy(Duration expiryDuration) { method factoryOf (line 59) | public static Factory factoryOf(Duration duration) { method getExpiryForCreation (line 67) | @Override method getExpiryForAccess (line 76) | @Override method getExpiryForUpdate (line 86) | @Override method hashCode (line 95) | @Override method equals (line 106) | @Override FILE: src/main/java/javax/cache/expiry/CreatedExpiryPolicy.java class CreatedExpiryPolicy (line 32) | public final class CreatedExpiryPolicy implements ExpiryPolicy, Serializ... method CreatedExpiryPolicy (line 50) | public CreatedExpiryPolicy(Duration expiryDuration) { method factoryOf (line 59) | public static Factory factoryOf(Duration duration) { method getExpiryForCreation (line 66) | @Override method getExpiryForAccess (line 75) | @Override method getExpiryForUpdate (line 84) | @Override method hashCode (line 93) | @Override method equals (line 104) | @Override FILE: src/main/java/javax/cache/expiry/Duration.java class Duration (line 38) | public class Duration implements Serializable { method Duration (line 106) | public Duration() { method Duration (line 120) | public Duration(TimeUnit timeUnit, long durationAmount) { method Duration (line 156) | public Duration(long startTime, long endTime) { method getTimeUnit (line 177) | public TimeUnit getTimeUnit() { method getDurationAmount (line 186) | public long getDurationAmount() { method isEternal (line 195) | public boolean isEternal() { method isZero (line 204) | public boolean isZero() { method getAdjustedTime (line 218) | public long getAdjustedTime(long time) { method equals (line 229) | @Override method hashCode (line 256) | @Override FILE: src/main/java/javax/cache/expiry/EternalExpiryPolicy.java class EternalExpiryPolicy (line 36) | public final class EternalExpiryPolicy implements ExpiryPolicy, Serializ... method factoryOf (line 48) | public static Factory factoryOf() { method getExpiryForCreation (line 56) | @Override method getExpiryForAccess (line 64) | @Override method getExpiryForUpdate (line 72) | @Override method hashCode (line 80) | @Override method equals (line 88) | @Override FILE: src/main/java/javax/cache/expiry/ExpiryPolicy.java type ExpiryPolicy (line 32) | public interface ExpiryPolicy { method getExpiryForCreation (line 49) | Duration getExpiryForCreation(); method getExpiryForAccess (line 66) | Duration getExpiryForAccess(); method getExpiryForUpdate (line 83) | Duration getExpiryForUpdate(); FILE: src/main/java/javax/cache/expiry/ModifiedExpiryPolicy.java class ModifiedExpiryPolicy (line 33) | public final class ModifiedExpiryPolicy implements ExpiryPolicy, Seriali... method ModifiedExpiryPolicy (line 51) | public ModifiedExpiryPolicy(Duration expiryDuration) { method factoryOf (line 61) | public static Factory factoryOf(Duration duration) { method getExpiryForCreation (line 68) | @Override method getExpiryForAccess (line 76) | @Override method getExpiryForUpdate (line 85) | @Override method hashCode (line 95) | @Override method equals (line 106) | @Override FILE: src/main/java/javax/cache/expiry/TouchedExpiryPolicy.java class TouchedExpiryPolicy (line 33) | public final class TouchedExpiryPolicy implements ExpiryPolicy, Serializ... method TouchedExpiryPolicy (line 51) | public TouchedExpiryPolicy(Duration expiryDuration) { method factoryOf (line 60) | public static Factory factoryOf(Duration duration) { method getExpiryForCreation (line 67) | @Override method getExpiryForAccess (line 76) | @Override method getExpiryForUpdate (line 85) | @Override method hashCode (line 94) | @Override method equals (line 105) | @Override FILE: src/main/java/javax/cache/integration/CacheLoader.java type CacheLoader (line 35) | public interface CacheLoader { method load (line 48) | V load(K key) throws CacheLoaderException; method loadAll (line 62) | Map loadAll(Iterable keys) throws CacheLoaderExcept... FILE: src/main/java/javax/cache/integration/CacheLoaderException.java class CacheLoaderException (line 29) | public class CacheLoaderException extends CacheException { method CacheLoaderException (line 37) | public CacheLoaderException() { method CacheLoaderException (line 47) | public CacheLoaderException(String message) { method CacheLoaderException (line 63) | public CacheLoaderException(String message, Throwable cause) { method CacheLoaderException (line 81) | public CacheLoaderException(Throwable cause) { FILE: src/main/java/javax/cache/integration/CacheWriter.java type CacheWriter (line 47) | public interface CacheWriter { method write (line 60) | void write(Cache.Entry entry) throws CacheWr... method writeAll (line 82) | void writeAll(Collection> entrie... method delete (line 98) | void delete(Object key) throws CacheWriterException; method deleteAll (line 128) | void deleteAll(Collection keys) throws CacheWriterException; FILE: src/main/java/javax/cache/integration/CacheWriterException.java class CacheWriterException (line 29) | public class CacheWriterException extends CacheException { method CacheWriterException (line 37) | public CacheWriterException() { method CacheWriterException (line 47) | public CacheWriterException(String message) { method CacheWriterException (line 63) | public CacheWriterException(String message, Throwable cause) { method CacheWriterException (line 81) | public CacheWriterException(Throwable cause) { FILE: src/main/java/javax/cache/integration/CompletionListener.java type CompletionListener (line 40) | public interface CompletionListener { method onCompletion (line 45) | void onCompletion(); method onException (line 52) | void onException(Exception e); FILE: src/main/java/javax/cache/integration/CompletionListenerFuture.java class CompletionListenerFuture (line 49) | public class CompletionListenerFuture implements CompletionListener, Fut... method CompletionListenerFuture (line 58) | public CompletionListenerFuture() { method onCompletion (line 67) | @Override method onException (line 83) | @Override method markAsCompleted (line 97) | private void markAsCompleted() { method cancel (line 108) | @Override method isCancelled (line 118) | @Override method isDone (line 123) | @Override method get (line 140) | @Override method get (line 167) | @Override FILE: src/main/java/javax/cache/management/CacheMXBean.java type CacheMXBean (line 44) | @MXBean method getKeyType (line 53) | String getKeyType(); method getValueType (line 60) | String getValueType(); method isReadThrough (line 80) | boolean isReadThrough(); method isWriteThrough (line 104) | boolean isWriteThrough(); method isStoreByValue (line 130) | boolean isStoreByValue(); method isStatisticsEnabled (line 139) | boolean isStatisticsEnabled(); method isManagementEnabled (line 148) | boolean isManagementEnabled(); FILE: src/main/java/javax/cache/management/CacheStatisticsMXBean.java type CacheStatisticsMXBean (line 45) | @MXBean method clear (line 51) | void clear(); method getCacheHits (line 69) | long getCacheHits(); method getCacheHitPercentage (line 79) | float getCacheHitPercentage(); method getCacheMisses (line 104) | long getCacheMisses(); method getCacheMissPercentage (line 115) | float getCacheMissPercentage(); method getCacheGets (line 129) | long getCacheGets(); method getCachePuts (line 141) | long getCachePuts(); method getCacheRemovals (line 149) | long getCacheRemovals(); method getCacheEvictions (line 158) | long getCacheEvictions(); method getAverageGetTime (line 168) | float getAverageGetTime(); method getAveragePutTime (line 175) | float getAveragePutTime(); method getAverageRemoveTime (line 182) | float getAverageRemoveTime(); FILE: src/main/java/javax/cache/processor/EntryProcessor.java type EntryProcessor (line 144) | public interface EntryProcessor { method process (line 154) | T process(MutableEntry entry, Object... arguments) FILE: src/main/java/javax/cache/processor/EntryProcessorException.java class EntryProcessorException (line 31) | public class EntryProcessorException extends CacheException { method EntryProcessorException (line 39) | public EntryProcessorException() { method EntryProcessorException (line 49) | public EntryProcessorException(String message) { method EntryProcessorException (line 65) | public EntryProcessorException(String message, Throwable cause) { method EntryProcessorException (line 83) | public EntryProcessorException(Throwable cause) { FILE: src/main/java/javax/cache/processor/EntryProcessorResult.java type EntryProcessorResult (line 30) | public interface EntryProcessorResult { method get (line 47) | T get() throws EntryProcessorException; FILE: src/main/java/javax/cache/processor/MutableEntry.java type MutableEntry (line 35) | public interface MutableEntry extends Cache.Entry { method exists (line 42) | boolean exists(); method remove (line 49) | void remove(); method getValue (line 61) | V getValue(); method setValue (line 78) | void setValue(V value); FILE: src/main/java/javax/cache/spi/CachingProvider.java type CachingProvider (line 40) | public interface CachingProvider extends Closeable { method getCacheManager (line 77) | CacheManager getCacheManager(URI uri, ClassLoader classLoader, method getDefaultClassLoader (line 86) | ClassLoader getDefaultClassLoader(); method getDefaultURI (line 96) | URI getDefaultURI(); method getDefaultProperties (line 106) | Properties getDefaultProperties(); method getCacheManager (line 128) | CacheManager getCacheManager(URI uri, ClassLoader classLoader); method getCacheManager (line 143) | CacheManager getCacheManager(); method close (line 157) | void close(); method close (line 171) | void close(ClassLoader classLoader); method close (line 183) | void close(URI uri, ClassLoader classLoader); method isSupported (line 192) | boolean isSupported(OptionalFeature optionalFeature);