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

Quick Search    Search Deep

org.apache.oro.util
Class GenericCacheEntry  view GenericCacheEntry download GenericCacheEntry.java

java.lang.Object
  extended byorg.apache.oro.util.GenericCacheEntry
All Implemented Interfaces:
java.io.Serializable

final class GenericCacheEntry
extends java.lang.Object
implements java.io.Serializable

A structure used to store values in a GenericCache. It is declared with default access to limit it to use only within the package.

Since:
1.0
Version:
@version@

Field Summary
(package private)  int _index
          The cache array index of the entry.
(package private)  java.lang.Object _key
          The key used to store the value.
(package private)  java.lang.Object _value
          The value stored at this entry.
 
Constructor Summary
(package private) GenericCacheEntry(int index)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_index

int _index
The cache array index of the entry.


_value

java.lang.Object _value
The value stored at this entry.


_key

java.lang.Object _key
The key used to store the value.

Constructor Detail

GenericCacheEntry

GenericCacheEntry(int index)