oracle.ias.cache
Class CacheObjectInfo
java.lang.Object
|
+--oracle.ias.cache.CacheObjectInfo
- All Implemented Interfaces:
- java.io.Serializable
- public class CacheObjectInfo
- extends java.lang.Object
- implements java.io.Serializable
The CacheObjectInfo class describes the meta data information associated
with an object in the cache.
- Since:
- 2.0.0
- See Also:
- Serialized Form
Type | Field |
int |
accesses
the total number of times the object has been accessed |
java.lang.String |
expire
the number of seconds until the object is invalidated |
java.lang.String |
group
the name of the group if any |
java.lang.Object |
name
the name of the object |
int |
refcount
the current reference count |
java.lang.String |
region
the name of the region |
java.lang.String |
type
the type of the object (memory, disk, group) |
boolean |
valid
true if the object is valid |
Type | Method |
java.lang.String |
toString()
convert the object to a string
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
region
public java.lang.String region
- the name of the region
name
public java.lang.Object name
- the name of the object
group
public java.lang.String group
- the name of the group if any
type
public java.lang.String type
- the type of the object (memory, disk, group)
expire
public java.lang.String expire
- the number of seconds until the object is invalidated
valid
public boolean valid
- true if the object is valid
refcount
public int refcount
- the current reference count
accesses
public int accesses
- the total number of times the object has been accessed
CacheObjectInfo
public CacheObjectInfo()
toString
public java.lang.String toString()
- convert the object to a string
- Overrides:
toString
in class java.lang.Object
- Returns:
- a formatted string represents this class.
- Since:
- 2.0.0