类 CacheOperation
java.lang.Object
cn.taketoday.cache.interceptor.CacheOperation
- 所有已实现的接口:
BasicOperation
Base class for cache operations.
- 从以下版本开始:
- 4.0
- 作者:
- Costin Leau, Stephane Nicoll, Marcin Kamionowski
-
嵌套类概要
嵌套类 -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明booleanThis implementation compares thetoString()results.Return the cache name(s) associated with the operation.getKey()getName()booleaninthashCode()This implementation returnstoString()'s hash code.booleanfinal StringtoString()Return an identifying description for this cache operation.
-
构造器详细资料
-
CacheOperation
Create a newCacheOperationinstance from the given builder.
-
-
方法详细资料
-
getName
-
getCacheNames
从接口复制的说明:BasicOperationReturn the cache name(s) associated with the operation.- 指定者:
getCacheNames在接口中BasicOperation
-
getKey
-
getKeyGenerator
-
getCacheManager
-
getCacheResolver
-
getCondition
-
hasKeyString
public boolean hasKeyString() -
hasConditionString
public boolean hasConditionString() -
equals
This implementation compares thetoString()results. -
hashCode
public int hashCode()This implementation returnstoString()'s hash code. -
toString
Return an identifying description for this cache operation.Returned value is produced by calling
CacheOperation.Builder.getOperationDescription()during object construction. This method is used inhashCode()andequals(java.lang.Object).
-