Interface DataManipulator.Mutable.Factory

    • Method Detail

      • of

        DataManipulator.Mutable of()
        Creates an empty mutable manipulator that can be used as a sink accepting new values.
        Returns:
        A new empty manipulator
      • of

        DataManipulator.Mutable of​(Iterable<? extends Value<?>> values)
        Creates a new manipulator with all the provided values.
        Parameters:
        values - the values to populate
        Returns:
        The new manipulator with the provided values
      • of

        DataManipulator.Mutable of​(ValueContainer valueContainer)
        Creates a new manipulator with all the possible values from the given ValueContainer.
        Parameters:
        valueContainer - the value container containing all values
        Returns:
        The new manipulator with all values from the given container