Interface ObjectBuilder<T>

  • Type Parameters:
    T - Type of object being built
    All Superinterfaces:
    Supplier<T>
    All Known Implementing Classes:
    Builder
    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 ObjectBuilder<T>
    extends Supplier<T>
    A generic builder interface
    Author:
    Apache MINA SSHD Project
    • Method Detail

      • get

        default T get()
        Specified by:
        get in interface Supplier<T>
      • build

        T build()