Class BlobJavaType.BlobMutabilityPlan
- java.lang.Object
-
- org.hibernate.type.descriptor.java.BlobJavaType.BlobMutabilityPlan
-
- All Implemented Interfaces:
Serializable
,MutabilityPlan<Blob>
- Enclosing class:
- BlobJavaType
public static class BlobJavaType.BlobMutabilityPlan extends Object implements MutabilityPlan<Blob>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static BlobJavaType.BlobMutabilityPlan
INSTANCE
-
Constructor Summary
Constructors Constructor Description BlobMutabilityPlan()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Blob
assemble(Serializable cached, SharedSessionContract session)
Assemble a previously disassembled value.Blob
deepCopy(Blob value)
Return a deep copy of the value.Serializable
disassemble(Blob value, SharedSessionContract session)
Return a disassembled representation of the value.boolean
isMutable()
Can the internal state of instances ofT
be changed?
-
-
-
Field Detail
-
INSTANCE
public static final BlobJavaType.BlobMutabilityPlan INSTANCE
-
-
Method Detail
-
isMutable
public boolean isMutable()
Description copied from interface:MutabilityPlan
Can the internal state of instances ofT
be changed?- Specified by:
isMutable
in interfaceMutabilityPlan<Blob>
- Returns:
- True if the internal state can be changed; false otherwise.
-
deepCopy
public Blob deepCopy(Blob value)
Description copied from interface:MutabilityPlan
Return a deep copy of the value.- Specified by:
deepCopy
in interfaceMutabilityPlan<Blob>
- Parameters:
value
- The value to deep copy- Returns:
- The deep copy.
-
disassemble
public Serializable disassemble(Blob value, SharedSessionContract session)
Description copied from interface:MutabilityPlan
Return a disassembled representation of the value.Called before storing a value in the second-level cache.
Complementary to
MutabilityPlan.assemble(java.io.Serializable, org.hibernate.SharedSessionContract)
.- Specified by:
disassemble
in interfaceMutabilityPlan<Blob>
- See Also:
MutabilityPlan.assemble(java.io.Serializable, org.hibernate.SharedSessionContract)
-
assemble
public Blob assemble(Serializable cached, SharedSessionContract session)
Description copied from interface:MutabilityPlan
Assemble a previously disassembled value.Called after reading a value from the second level cache.
Complementary to
MutabilityPlan.disassemble(T, org.hibernate.SharedSessionContract)
.- Specified by:
assemble
in interfaceMutabilityPlan<Blob>
- See Also:
MutabilityPlan.disassemble(T, org.hibernate.SharedSessionContract)
-
-