Interface IListValueBuilder<V>

    • Method Detail

      • set

        IListValueBuilder<V> set​(int index,
                                 IValueCreator creator)
        Sets the value at the given index to the given value.
        Parameters:
        index - Index in the list, starting at 0.
        creator - Value creator for the value at the given index.
        Returns:
        This value builder for chaining method calls.
      • set

        default IListValueBuilder<V> set​(int index,
                                         Object value)
        Sets the value at the given index to the given value.
        Parameters:
        index - Index in the list, starting at 0.
        value - Value to set at the given index.
        Returns:
        This value builder for chaining method calls.