I'm working on a framework extension for Parsley, and need to effectively clone an ObjectDefinition during initialziation of the context, and mutate some of it's properties.
As ObjectDefinition's are inherently immutable, I'm finding I have to jump through hoops to create a new builder that safely ensures the properties of the existing ObjectDefinition have been copied across.
Is there a way to safely create a new ObjectDefinitionBuilder from an existing ObjectDefinition?
If not, what other alternatives exist for creating an ObjectDefinition clone?