Class DiscriminatedAssociationAttributeMapping.MutabilityPlanImpl
- java.lang.Object
-
- org.hibernate.metamodel.mapping.internal.DiscriminatedAssociationAttributeMapping.MutabilityPlanImpl
-
- All Implemented Interfaces:
Serializable
,MutabilityPlan<Object>
- Enclosing class:
- DiscriminatedAssociationAttributeMapping
public static class DiscriminatedAssociationAttributeMapping.MutabilityPlanImpl extends Object implements MutabilityPlan<Object>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MutabilityPlanImpl(AnyType anyType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Object
assemble(Serializable cached, SharedSessionContract session)
Assemble a previously disassembled value.Object
deepCopy(Object value)
Return a deep copy of the value.Serializable
disassemble(Object value, SharedSessionContract session)
Return a disassembled representation of the value.boolean
isMutable()
Can the internal state of instances ofT
be changed?
-
-
-
Constructor Detail
-
MutabilityPlanImpl
public MutabilityPlanImpl(AnyType anyType)
-
-
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<Object>
- Returns:
- True if the internal state can be changed; false otherwise.
-
deepCopy
public Object deepCopy(Object value)
Description copied from interface:MutabilityPlan
Return a deep copy of the value.- Specified by:
deepCopy
in interfaceMutabilityPlan<Object>
- Parameters:
value
- The value to deep copy- Returns:
- The deep copy.
-
disassemble
public Serializable disassemble(Object 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 toMutabilityPlan.assemble(java.io.Serializable, org.hibernate.SharedSessionContract)
.- Specified by:
disassemble
in interfaceMutabilityPlan<Object>
- See Also:
MutabilityPlan.assemble(java.io.Serializable, org.hibernate.SharedSessionContract)
-
assemble
public Object 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 toMutabilityPlan.disassemble(T, org.hibernate.SharedSessionContract)
.- Specified by:
assemble
in interfaceMutabilityPlan<Object>
- See Also:
MutabilityPlan.disassemble(T, org.hibernate.SharedSessionContract)
-
-