Package io.sundr.builder
Interface Builder<T>
-
- Type Parameters:
T- The type of objects this Builder builds.
- All Known Subinterfaces:
VisitableBuilder<T,V>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface Builder<T>
An interfaces that describes a Builder.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tbuild()Build the target object.
-
-
-
Method Detail
-
build
T build()
Build the target object.- Returns:
- The target object.
-
-