Package com.jme3.util.clone


package com.jme3.util.clone
generate deep clones of objects
  • Class
    Description
    Provides custom cloning for a particular object type.
    A deep clone utility that provides similar object-graph-preserving qualities to typical serialization schemes.
    A CloneFunction implementation that simply returns the passed object without cloning it.
    Indicates an object that wishes to more actively participate in the two-part deep copying process provided by the Cloner.
    A CloneFunction implementation that deep clones a list by creating a new list and cloning its values using the cloner.