Package org.apache.ibatis.cache
Class CacheKey
- java.lang.Object
-
- org.apache.ibatis.cache.CacheKey
-
- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
NullCacheKey
public class CacheKey extends Object implements Cloneable, Serializable
- Author:
- Clinton Begin
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static CacheKey
NULL_CACHE_KEY
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CacheKey
clone()
boolean
equals(Object object)
int
getUpdateCount()
int
hashCode()
String
toString()
void
update(Object object)
void
updateAll(Object[] objects)
-
-
-
Field Detail
-
NULL_CACHE_KEY
public static final CacheKey NULL_CACHE_KEY
-
-
Constructor Detail
-
CacheKey
public CacheKey()
-
CacheKey
public CacheKey(Object[] objects)
-
-
Method Detail
-
getUpdateCount
public int getUpdateCount()
-
update
public void update(Object object)
-
updateAll
public void updateAll(Object[] objects)
-
clone
public CacheKey clone() throws CloneNotSupportedException
- Overrides:
clone
in classObject
- Throws:
CloneNotSupportedException
-
-