Interface ObjectBuilder<T>

  • Type Parameters:
    T - Type of object being built
    All Superinterfaces:
    java.util.function.Supplier<T>
    All Known Implementing Classes:
    BaseBuilder, Builder, ClientBuilder, ScpCommandFactory.Builder, ServerBuilder, SftpSubsystemFactory.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 java.util.function.Supplier<T>
    A generic builder interface
    • Method Detail

      • get

        default T get()
        Specified by:
        get in interface java.util.function.Supplier<T>
      • build

        T build()