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

com.fengwenyi.javalib.jk.IBuilder Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
package com.fengwenyi.javalib.jk;

/**
 * 构造者模式接口
 *
 * @author Erwin Feng
 * @since 2.1.4
 */
public interface IBuilder {

    /**
     * 构建一个对象
     * @return 构建对象
     */
    T build();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy