UpType.java

  1. package com.surrealdb;

  2. /**
  3.  * Enumeration to represent the type of update operations.
  4.  * <p>
  5.  * The UpType enum provides constants to specify the kind of update operation that should be performed.
  6.  */
  7. public enum UpType {

  8.     /**
  9.      * Represents a content update operation.
  10.      * This type of operation replaces the entire existing data with the provided data.
  11.      * <p>
  12.      * For more details, check the <a href="https://surrealdb.com/docs/surrealql/statements/update#content-clause">SurrealQL documentation</a>.
  13.      * <p>
  14.      */
  15.     CONTENT(1),
  16.     /**
  17.      * Represents a merge update operation.
  18.      * This type of operation merges the existing data with the provided data.
  19.      * <p>
  20.      * For more details, check the <a href="https://surrealdb.com/docs/surrealql/statements/update#merge-clause">SurrealQL documentation</a>.
  21.      * <p>
  22.      */
  23.     MERGE(2),
  24.     /**
  25.      * Represents a patch update operation.
  26.      * This type of operation applies partial changes to the existing data.
  27.      * <p>
  28.      * For more details, check the <a href="https://surrealdb.com/docs/surrealql/statements/update#patch-clause">SurrealQL documentation</a>.
  29.      * <p>
  30.      */
  31.     PATCH(3);

  32.     final int code;

  33.     UpType(int code) {
  34.         this.code = code;
  35.     }

  36. }