JWBuilder

public protocol JWBuilder

A set of methods all builders conform to.

  • The type of item the builder builds.

    Declaration

    Swift

    associatedtype Output
  • Builds the object.

    Throws

    An error if the object is not setup correctly.

    Declaration

    Swift

    func build() throws -> Output

    Return Value

    An instance of the assicated object.