
com.magictools.core.builder.Builder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of magic-tools-core Show documentation
Show all versions of magic-tools-core Show documentation
magic-tools核心,包括集合、字符串、Bean等工具
The newest version!
package com.magictools.core.builder;
import java.io.Serializable;
/**
* 建造者模式接口定义
*
* @param 建造对象类型
* @author Looly
* @since 4.2.2
*/
public interface Builder extends Serializable{
/**
* 构建
*
* @return 被构建的对象
*/
T build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy