org.apache.oro.util |
This package includes general classes required by {@link
org.apache.oro.text} and related packages, but that can also be applied to
more general uses.
|
Java Source File Name | Type | Comment |
Cache.java | Interface | An interface defining the basic functions of a cache. |
CacheFIFO.java | Class | This class is a GenericCache subclass implementing a FIFO (First
In First Out) cache replacement policy. |
CacheFIFO2.java | Class | This class is a GenericCache subclass implementing a second
chance FIFO (First In First Out) cache replacement policy. |
CacheLRU.java | Class | This class is a GenericCache subclass implementing an LRU
(Least Recently Used) cache replacement policy. |
CacheRandom.java | Class | This class is a GenericCache subclass implementing a random
cache replacement policy. |
GenericCache.java | Class | This is the base class for all cache implementations provided in the
org.apache.oro.util package. |
GenericCacheEntry.java | Class | A structure used to store values in a GenericCache. |