类 ClobTypeDescriptor.ClobMutabilityPlan
- java.lang.Object
-
- org.hibernate.type.descriptor.java.ClobTypeDescriptor.ClobMutabilityPlan
-
- 所有已实现的接口:
Serializable,MutabilityPlan<Clob>
- 封闭类:
- ClobTypeDescriptor
public static class ClobTypeDescriptor.ClobMutabilityPlan extends Object implements MutabilityPlan<Clob>
- 另请参阅:
- 序列化表格
-
-
字段概要
字段 修饰符和类型 字段 说明 static ClobTypeDescriptor.ClobMutabilityPlanINSTANCE
-
构造器概要
构造器 构造器 说明 ClobMutabilityPlan()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 Clobassemble(Serializable cached)Assemble a previously disassembled value.ClobdeepCopy(Clob value)Return a deep copy of the value.Serializabledisassemble(Clob value)Return a "disassembled" representation of the value.booleanisMutable()Can the internal state of instances of T be changed?
-
-
-
字段详细资料
-
INSTANCE
public static final ClobTypeDescriptor.ClobMutabilityPlan INSTANCE
-
-
方法详细资料
-
isMutable
public boolean isMutable()
从接口复制的说明:MutabilityPlanCan the internal state of instances of T be changed?- 指定者:
isMutable在接口中MutabilityPlan<Clob>- 返回:
- True if the internal state can be changed; false otherwise.
-
deepCopy
public Clob deepCopy(Clob value)
从接口复制的说明:MutabilityPlanReturn a deep copy of the value.- 指定者:
deepCopy在接口中MutabilityPlan<Clob>- 参数:
value- The value to deep copy- 返回:
- The deep copy.
-
disassemble
public Serializable disassemble(Clob value)
从接口复制的说明:MutabilityPlanReturn a "disassembled" representation of the value. This is used to push values onto the second level cache. Compliment toMutabilityPlan.assemble(java.io.Serializable)- 指定者:
disassemble在接口中MutabilityPlan<Clob>- 参数:
value- The value to disassemble- 返回:
- The disassembled value.
- 另请参阅:
MutabilityPlan.assemble(java.io.Serializable)
-
assemble
public Clob assemble(Serializable cached)
从接口复制的说明:MutabilityPlanAssemble a previously disassembled value. This is used when pulling values from the second level cache. Compliment toMutabilityPlan.disassemble(T)- 指定者:
assemble在接口中MutabilityPlan<Clob>- 参数:
cached- The disassembled state- 返回:
- The re-assembled value.
- 另请参阅:
MutabilityPlan.disassemble(T)
-
-