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

org.ebay.datameta.util.jdk.Copyable Maven / Gradle / Ivy

The newest version!
package org.ebay.datameta.util.jdk;

/**
 * Generified version of {@link Cloneable}, bean-friendly and not throwing any checked exceptions.
 * @author Michael Bergens
 * @param  the type to copy.
 */
public interface Copyable {
    /**
     * Gets a copy of this object without throwing any checked exceptions. Each implementor
     * should explain what kind of copy it gets, deep, shallow, how deep/shallow if applicable, what's the catch if any.
     */
    @Api T getCopyOf();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy