com.fengwenyi.api.result.Builder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-result Show documentation
Show all versions of api-result Show documentation
一套RESTful风格API接口响应参数规范化的解决方案
package com.fengwenyi.api.result;
/**
* 构造者模式接口
*
* @author Erwin Feng
* @since 2.5.2
*/
public interface Builder {
/**
* 构建一个对象
* @return 构建对象
*/
T build();
}