Enum Class Clause

java.lang.Object
java.lang.Enum<Clause>
org.hibernate.sql.ast.Clause
All Implemented Interfaces:
Serializable, Comparable<Clause>, Constable

@Incubating public enum Clause extends Enum<Clause>
Used to indicate which query clause we are currently processing
  • Enum Constant Details

    • INSERT

      public static final Clause INSERT
      The insert clause
    • VALUES

      public static final Clause VALUES
      The values clause
    • UPDATE

      public static final Clause UPDATE
      The update clause
    • SET

      public static final Clause SET
      The update set clause
    • SET_EXPRESSION

      public static final Clause SET_EXPRESSION
      The update set clause expression part
    • DELETE

      public static final Clause DELETE
      Used as indicator of processing predicates (where clause) that occur in a delete
    • MERGE

      public static final Clause MERGE
    • SELECT

      public static final Clause SELECT
    • FROM

      public static final Clause FROM
    • WHERE

      public static final Clause WHERE
    • GROUP

      public static final Clause GROUP
    • HAVING

      public static final Clause HAVING
    • ORDER

      public static final Clause ORDER
    • OFFSET

      public static final Clause OFFSET
    • FETCH

      public static final Clause FETCH
    • OVER

      public static final Clause OVER
    • WITH

      public static final Clause WITH
      The clause containing CTEs
    • WITHIN_GROUP

      public static final Clause WITHIN_GROUP
    • PARTITION

      public static final Clause PARTITION
    • CONFLICT

      public static final Clause CONFLICT
    • CALL

      public static final Clause CALL
    • IRRELEVANT

      public static final Clause IRRELEVANT
  • Method Details

    • values

      public static Clause[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Clause valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null