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