Interface Update.RemoveFromBuilder

Enclosing class:
Update

public static interface Update.RemoveFromBuilder
Builder to remove a single element/multiple elements from a collection associated with a ColumnName.
Since:
3.1.4
Author:
Mark Paluch
  • Method Summary

    Modifier and Type
    Method
    Description
    value(Object value)
    Remove all entries matching value from a set, list or map (map key).
    values(Iterable<? extends Object> values)
    Remove all entries matching values from a set, list or map (map key).
    default Update
    values(Object... values)
    Remove all entries matching values from a set, list or map (map key).
  • Method Details

    • value

      Update value(Object value)
      Remove all entries matching value from a set, list or map (map key).
      Parameters:
      value - must not be null.
      Returns:
      a new Update object containing the merge result of the existing assignments and the current assignment.
    • values

      default Update values(Object... values)
      Remove all entries matching values from a set, list or map (map key).
      Parameters:
      values - must not be null.
      Returns:
      a new Update object containing the merge result of the existing assignments and the current assignment.
    • values

      Update values(Iterable<? extends Object> values)
      Remove all entries matching values from a set, list or map (map key).
      Parameters:
      values - must not be null.
      Returns:
      a new Update object containing the merge result of the existing assignments and the current assignment.