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();
}