public interface DeepCloneable extends Cloneable
DeepCloneable
is a cloneable object that can be cloned shallowly (by
creating a copy of the object that contains references to the same
members as the original) or deeply (by creating a copy of the object
and of all it's member objects).Modifier and Type | Method and Description |
---|---|
Object |
clone()
Create a shallow clone of the object
|
Object |
deepClone()
Create a deep clone of the object
|
Object clone() throws CloneNotSupportedException
CloneNotSupportedException
Object deepClone() throws UnsupportedOperationException
UnsupportedOperationException
Copyright © 2020. All rights reserved.