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 Detail

      • build

        T build()
        Build the target object.
        Returns:
        The target object.