
org.fulib.fx.duplicate.Duplicator Maven / Gradle / Ivy
package org.fulib.fx.duplicate;
/**
* Interface for duplicating objects.
*
* @param The type of the object to duplicate
*/
@FunctionalInterface
public interface Duplicator {
/**
* Duplicates the given object.
*
* @param object The object to duplicate
* @return The duplicated object
*/
T duplicate(T object);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy