Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A C D G I K O S _

A

addElement(Object, Object) - Method in interface org.apache.oro.util.Cache
 
addElement(Object, Object) - Method in class org.apache.oro.util.CacheFIFO
Adds a value to the cache.
addElement(Object, Object) - Method in class org.apache.oro.util.CacheFIFO2
Adds a value to the cache.
addElement(Object, Object) - Method in class org.apache.oro.util.CacheLRU
Adds a value to the cache.
addElement(Object, Object) - Method in class org.apache.oro.util.CacheRandom
Adds a value to the cache.
addElement(Object, Object) - Method in class org.apache.oro.util.GenericCache
 

C

Cache - interface org.apache.oro.util.Cache.
An interface defining the basic functions of a cache.
CacheFIFO - class org.apache.oro.util.CacheFIFO.
This class is a GenericCache subclass implementing a FIFO (First In First Out) cache replacement policy.
CacheFIFO(int) - Constructor for class org.apache.oro.util.CacheFIFO
Creates a CacheFIFO instance with a given cache capacity.
CacheFIFO() - Constructor for class org.apache.oro.util.CacheFIFO
Same as:
CacheFIFO2 - class org.apache.oro.util.CacheFIFO2.
This class is a GenericCache subclass implementing a second chance FIFO (First In First Out) cache replacement policy.
CacheFIFO2(int) - Constructor for class org.apache.oro.util.CacheFIFO2
Creates a CacheFIFO2 instance with a given cache capacity.
CacheFIFO2() - Constructor for class org.apache.oro.util.CacheFIFO2
Same as:
CacheLRU - class org.apache.oro.util.CacheLRU.
This class is a GenericCache subclass implementing an LRU (Least Recently Used) cache replacement policy.
CacheLRU(int) - Constructor for class org.apache.oro.util.CacheLRU
Creates a CacheLRU instance with a given cache capacity.
CacheLRU() - Constructor for class org.apache.oro.util.CacheLRU
Same as:
CacheRandom - class org.apache.oro.util.CacheRandom.
This class is a GenericCache subclass implementing a random cache replacement policy.
CacheRandom(int) - Constructor for class org.apache.oro.util.CacheRandom
Creates a CacheRandom instance with a given cache capacity.
CacheRandom() - Constructor for class org.apache.oro.util.CacheRandom
Same as:
capacity() - Method in interface org.apache.oro.util.Cache
Returns the maximum number of elements that can be cached at one time.
capacity() - Method in class org.apache.oro.util.GenericCache
Returns the maximum number of elements that can be cached at one time.

D

DEFAULT_CAPACITY - Static variable in class org.apache.oro.util.GenericCache
The default capacity to be used by the GenericCache subclasses provided with this package.

G

GenericCache - class org.apache.oro.util.GenericCache.
This is the base class for all cache implementations provided in the org.apache.oro.util package.
GenericCache(int) - Constructor for class org.apache.oro.util.GenericCache
The primary constructor for GenericCache.
GenericCacheEntry - class org.apache.oro.util.GenericCacheEntry.
A structure used to store values in a GenericCache.
GenericCacheEntry(int) - Constructor for class org.apache.oro.util.GenericCacheEntry
 
getElement(Object) - Method in interface org.apache.oro.util.Cache
 
getElement(Object) - Method in class org.apache.oro.util.CacheFIFO2
 
getElement(Object) - Method in class org.apache.oro.util.CacheLRU
 
getElement(Object) - Method in class org.apache.oro.util.GenericCache
 

I

isFull() - Method in class org.apache.oro.util.GenericCache
 

K

keys() - Method in class org.apache.oro.util.GenericCache
 

O

org.apache.oro.util - package org.apache.oro.util
 

S

size() - Method in interface org.apache.oro.util.Cache
Returns the number of elements in the cache, not to be confused with the capacity() 55 which returns the number of elements that can be held in the cache at one time.
size() - Method in class org.apache.oro.util.GenericCache
Returns the number of elements in the cache, not to be confused with the GenericCache.capacity() 55 which returns the number of elements that can be held in the cache at one time.

_

__curent - Variable in class org.apache.oro.util.CacheFIFO
 
__current - Variable in class org.apache.oro.util.CacheFIFO2
 
__head - Variable in class org.apache.oro.util.CacheLRU
 
__moveToFront(int) - Method in class org.apache.oro.util.CacheLRU
 
__next - Variable in class org.apache.oro.util.CacheLRU
 
__prev - Variable in class org.apache.oro.util.CacheLRU
 
__random - Variable in class org.apache.oro.util.CacheRandom
 
__tail - Variable in class org.apache.oro.util.CacheLRU
 
__tryAgain - Variable in class org.apache.oro.util.CacheFIFO2
 
_cache - Variable in class org.apache.oro.util.GenericCache
 
_index - Variable in class org.apache.oro.util.GenericCacheEntry
The cache array index of the entry.
_key - Variable in class org.apache.oro.util.GenericCacheEntry
The key used to store the value.
_numEntries - Variable in class org.apache.oro.util.GenericCache
 
_table - Variable in class org.apache.oro.util.GenericCache
 
_value - Variable in class org.apache.oro.util.GenericCacheEntry
The value stored at this entry.

A C D G I K O S _