Package com.oracle.coherence.common.base
Interface Cloner
-
- All Known Implementing Classes:
NaturalCloner
public interface Cloner
A Cloner provides an external means for producing copies of objects as prescribed by theObject.clone()
contract.- Author:
- gg/mf 2012.07.12
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
clone(T o)
Return a copy of the specified object.
-