Interface ValqueriesUpdate<T>

All Known Subinterfaces:
ValqueriesUpsertUpdate<T>
All Known Implementing Classes:
ValqueriesUpdateImpl, ValqueriesUpsertUpdateImpl

public interface ValqueriesUpdate<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    <X> void
    increment(Function<T,X> field, X value)
    Increment a field by the specified value.
    <X> void
    set(Function<T,X> field, X value)
    Set a field to the specified value.
  • Method Details

    • set

      <X> void set(Function<T,X> field, X value)
      Set a field to the specified value.
      Type Parameters:
      X - the type of the field
      Parameters:
      field - the field to set
      value - the value to set the field to
    • increment

      <X> void increment(Function<T,X> field, X value)
      Increment a field by the specified value.
      Type Parameters:
      X - the type of the field
      Parameters:
      field - the field to increment
      value - the value to increment the field by