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

com.jchanghong.core.lang.copier.Copier Maven / Gradle / Ivy

The newest version!
package com.jchanghong.core.lang.copier;

/**
 * 拷贝接口
 * @author Looly
 *
 * @param  拷贝目标类型
 */
@FunctionalInterface
public interface Copier {
	/**
	 * 执行拷贝
	 * @return 拷贝的目标
	 */
	T copy();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy