Interface Builder<T>

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>
A superinterface common to instance builders.
  • Method Summary

    Modifier and Type
    Method
    Description
    Builds the instance given the current builder configuration.
  • Method Details

    • build

      T build()
      Builds the instance given the current builder configuration.
      Returns:
      the built instance.