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

top.cutexingluo.tools.designtools.builder.Builder Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
package top.cutexingluo.tools.designtools.builder;

/**
 * 建造者Builder接口
 * 

builder interface

* * @author XingTian * @version 1.0.0 * @date 2023/2/2 18:38 */ @FunctionalInterface public interface Builder { /** * get the builder */ default Builder getBuilder() { return this; } /** * build the target */ T build(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy