All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rits.cloning.IFastCloner Maven / Gradle / Ivy

Go to download

The cloning library is a small, open source (Apache licensed) Java library which deep-clones objects. The objects do not have to implement the Cloneable interface. Effectively, this library can clone ANY Java object. It can be used i.e. in cache implementations, if you don't want the cached object to be modified or whenever you want to create a deep copy of an object.

There is a newer version: 1.9.12
Show newest version
package com.rits.cloning;

import java.util.Map;

/**
 * allows a custom cloner to be created for a specific class.
 * (it has to be registered with Cloner)
 *
 * @author kostantinos.kougios
 * 21 May 2009
 */
public interface IFastCloner {
    public Object clone(Object t, IDeepCloner cloner, Map clones);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy