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

cn.hutool.core.builder.Builder Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
package cn.hutool.core.builder;

import java.io.Serializable;

/**
 * 建造者模式接口定义
 *
 * @param  建造对象类型
 * @author Looly
 * @since 4.2.2
 */
public interface Builder extends Serializable{
	/**
	 * 构建
	 *
	 * @return 被构建的对象
	 */
	T build();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy