Interface TokenUpdate

All Known Implementing Classes:
TokenUpdateImpl, TokenUpdateJooq

public interface TokenUpdate
Defines the update operations that can be performed on a TokenQuery
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    set(Token field, Object value)
    Set the value for a field.
    default void
    set(String field, Object value)
    Set the value for a field.
  • Method Details

    • set

      void set(Token field, Object value)
      Set the value for a field.
      Parameters:
      field - the field
      value - the value
    • set

      default void set(String field, Object value)
      Set the value for a field.

      Note: to specify non-standard column names, use set(Token, Object) with Token.literal(String)

      Parameters:
      field - the field, will be tokenized, for example "fullName" will reference column "full_name" for MariaDb
      value - the value