类 NClobTypeDescriptor.NClobMutabilityPlan
- java.lang.Object
-
- org.hibernate.type.descriptor.java.NClobTypeDescriptor.NClobMutabilityPlan
-
- 所有已实现的接口:
Serializable,MutabilityPlan<NClob>
- 封闭类:
- NClobTypeDescriptor
public static class NClobTypeDescriptor.NClobMutabilityPlan extends Object implements MutabilityPlan<NClob>
- 另请参阅:
- 序列化表格
-
-
字段概要
字段 修饰符和类型 字段 说明 static NClobTypeDescriptor.NClobMutabilityPlanINSTANCE
-
构造器概要
构造器 构造器 说明 NClobMutabilityPlan()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 NClobassemble(Serializable cached)Assemble a previously disassembled value.NClobdeepCopy(NClob value)Return a deep copy of the value.Serializabledisassemble(NClob value)Return a "disassembled" representation of the value.booleanisMutable()Can the internal state of instances of T be changed?
-
-
-
字段详细资料
-
INSTANCE
public static final NClobTypeDescriptor.NClobMutabilityPlan INSTANCE
-
-
方法详细资料
-
isMutable
public boolean isMutable()
从接口复制的说明:MutabilityPlanCan the internal state of instances of T be changed?- 指定者:
isMutable在接口中MutabilityPlan<NClob>- 返回:
- True if the internal state can be changed; false otherwise.
-
deepCopy
public NClob deepCopy(NClob value)
从接口复制的说明:MutabilityPlanReturn a deep copy of the value.- 指定者:
deepCopy在接口中MutabilityPlan<NClob>- 参数:
value- The value to deep copy- 返回:
- The deep copy.
-
disassemble
public Serializable disassemble(NClob 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<NClob>- 参数:
value- The value to disassemble- 返回:
- The disassembled value.
- 另请参阅:
MutabilityPlan.assemble(java.io.Serializable)
-
assemble
public NClob 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<NClob>- 参数:
cached- The disassembled state- 返回:
- The re-assembled value.
- 另请参阅:
MutabilityPlan.disassemble(T)
-
-