Uses of Interface
org.geotools.util.ObjectCache
-
Packages that use ObjectCache Package Description org.geotools.referencing.factory Base classes for factories and authority factories.org.geotools.util Contains utilities and addition to the collection framework. -
-
Uses of ObjectCache in org.geotools.referencing.factory
Fields in org.geotools.referencing.factory declared as ObjectCache Modifier and Type Field Description protected ObjectCache<Object,Object>
AbstractCachedAuthorityFactory. cache
Cache to be used for referencing objects defined by this authority.Methods in org.geotools.referencing.factory that return ObjectCache Modifier and Type Method Description protected static <K,V>
ObjectCache<K,V>CachedAuthorityDecorator. createCache(Hints hints)
Utility method used to produce cache based on hintprotected static <K,V>
ObjectCache<K,V>CachedCRSAuthorityDecorator. createCache(Hints hints)
Utility method used to produce cache based on hintConstructors in org.geotools.referencing.factory with parameters of type ObjectCache Constructor Description AbstractAuthorityMediator(int priority, ObjectCache<Object,Object> cache, ReferencingFactoryContainer container)
Constructs an instance making use of the indicated cache.AbstractCachedAuthorityFactory(int priority, ObjectCache<Object,Object> cache, ReferencingFactoryContainer container)
Constructs an instance making use of the indicated cache.CachedAuthorityDecorator(AuthorityFactory factory, ObjectCache<Object,Object> cache)
Constructs an instance wrapping the specified factory.CachedCRSAuthorityDecorator(CRSAuthorityFactory factory, ObjectCache<Object,Object> cache)
Constructs an instance wrapping the specified factory. -
Uses of ObjectCache in org.geotools.util
Methods in org.geotools.util that return ObjectCache Modifier and Type Method Description static <K,V>
ObjectCache<K,V>ObjectCaches. chain(ObjectCache<K,V> level1, ObjectCache<K,V> level2)
Create a two level cache, operates as a level1 cache that is willing to obtain values from a (usually shared) level2 cache.static <K,V>
ObjectCache<K,V>ObjectCaches. create(String policy, int size)
Utility method used to produce an ObjectCache.static <K,V>
ObjectCache<K,V>ObjectCaches. create(Hints hints)
Utility method used to produce cache based on provide HintMethods in org.geotools.util with parameters of type ObjectCache Modifier and Type Method Description static <K,V>
ObjectCache<K,V>ObjectCaches. chain(ObjectCache<K,V> level1, ObjectCache<K,V> level2)
Create a two level cache, operates as a level1 cache that is willing to obtain values from a (usually shared) level2 cache.
-