Class UpdateQueryBuilder.UpdateField

java.lang.Object
io.github.blyznytsiaorg.bibernate.dao.jdbc.dsl.UpdateQueryBuilder.UpdateField
Enclosing class:
UpdateQueryBuilder

public static class UpdateQueryBuilder.UpdateField extends Object
Represents an individual field to be updated with its corresponding value.
  • Field Details

    • fieldName

      private final String fieldName
      The name of the field to be updated.
    • value

      private final Object value
      The new value for the field.
  • Constructor Details

    • UpdateField

      public UpdateField(String fieldName, Object value)
      Constructs a new UpdateField with the specified field name and value.
      Parameters:
      fieldName - The name of the field to be updated.
      value - The new value for the field.