Class UserTypeMutabilityPlanAdapter<T>
java.lang.Object
org.hibernate.boot.model.process.internal.UserTypeMutabilityPlanAdapter<T>
- All Implemented Interfaces:
Serializable,MutabilityPlan<T>
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionassemble(Serializable cached, SharedSessionContract session) Assemble a previously disassembled value.Return a deep copy of the value.disassemble(T value, SharedSessionContract session) Return a disassembled representation of the value.booleanCan the internal state of instances ofTbe changed?
-
Constructor Details
-
UserTypeMutabilityPlanAdapter
-
-
Method Details
-
isMutable
public boolean isMutable()Description copied from interface:MutabilityPlanCan the internal state of instances ofTbe changed?- Specified by:
isMutablein interfaceMutabilityPlan<T>- Returns:
- True if the internal state can be changed; false otherwise.
-
deepCopy
Description copied from interface:MutabilityPlanReturn a deep copy of the value.- Specified by:
deepCopyin interfaceMutabilityPlan<T>- Parameters:
value- The value to deep copy- Returns:
- The deep copy.
-