Package org.apache.oro.util
Class GenericCacheEntry
- java.lang.Object
-
- org.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
-
-
Field Summary
Fields Modifier and Type Field Description (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.private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description GenericCacheEntry(int index)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
_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.
-
-