Interface | Description |
---|---|
Builder<T> |
建造者模式接口定义
|
Class | Description |
---|---|
GenericBuilder<T> |
通用Builder
参考: 一看就会的java8通用Builder
使用方法如下:
Box box = GenericBuilder
.of(Box::new)
.with(Box::setId, 1024L)
.with(Box::setTitle, "Hello World!")
|
Copyright © 2025. All rights reserved.