Module swim.util
Package swim.util

Interface Builder<I,​O>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean add​(I input)
      Adds a single input value to this builder, returning true if the state of the builder changed.
      boolean addAll​(Collection<? extends I> inputs)
      Adds multiple input values to this builder, returning true if the state of the builder changed.
      O bind()
      Returns the output result of this builder.
    • Method Detail

      • add

        boolean add​(I input)
        Adds a single input value to this builder, returning true if the state of the builder changed.
      • addAll

        boolean addAll​(Collection<? extends I> inputs)
        Adds multiple input values to this builder, returning true if the state of the builder changed.
      • bind

        O bind()
        Returns the output result of this builder.