org.unitils.objectvalidation.ObjectCloner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unitils-objectvalidation Show documentation
Show all versions of unitils-objectvalidation Show documentation
Unitils module to validate objects.
package org.unitils.objectvalidation;
/**
* The responsability of the {@link ObjectCloner} is to make a perfect copy of an object.
*
* @author Matthieu Mestrez
* @since Oct 18, 2013
*/
public interface ObjectCloner {
T deepClone(T object);
}