Package com.qfs.util
Interface IBuilder<R,B extends IBuilder<R,?>>
- Type Parameters:
R- the builder's result typeB- the builder type
- All Known Implementing Classes:
ABuilder
Deprecated, for removal: This API element is subject to removal in a future version.
Builder interface.
- Author:
- ActiveViam
-
Method Summary
Modifier and TypeMethodDescriptionbuild()Deprecated, for removal: This API element is subject to removal in a future version.Build the result.get()Deprecated, for removal: This API element is subject to removal in a future version.Results the result built bybuild().booleanisBuilt()Deprecated, for removal: This API element is subject to removal in a future version.Returns whether this result is already built or not.
-
Method Details
-
build
B build()Deprecated, for removal: This API element is subject to removal in a future version.Build the result.- Returns:
- the builder instance
-
get
R get()Deprecated, for removal: This API element is subject to removal in a future version.Results the result built bybuild(). -
isBuilt
boolean isBuilt()Deprecated, for removal: This API element is subject to removal in a future version.Returns whether this result is already built or not.
-