Enum Class StatementCatalog.Clause

java.lang.Object
java.lang.Enum<StatementCatalog.Clause>
org.neo4j.cypherdsl.core.StatementCatalog.Clause
All Implemented Interfaces:
Serializable, Comparable<StatementCatalog.Clause>, Constable
Enclosing interface:
StatementCatalog

public static enum StatementCatalog.Clause extends Enum<StatementCatalog.Clause>
Enum for the clause in which a comparison was made.
  • Enum Constant Details

    • MATCH

      public static final StatementCatalog.Clause MATCH
      The comparison was used in a MATCH clause.
    • CREATE

      public static final StatementCatalog.Clause CREATE
      The comparison was used in a CREATE clause.
    • MERGE

      public static final StatementCatalog.Clause MERGE
      The comparison was used in a MERGE clause.
    • DELETE

      public static final StatementCatalog.Clause DELETE
      The comparison was used in a DELETE clause.
    • WITH

      public static final StatementCatalog.Clause WITH
      The comparison was used in a WITH clause. The WITH clause is different to the WHERE clause as here "WHERE simply filters the results." (quoting from where).
    • UNKNOWN

      public static final StatementCatalog.Clause UNKNOWN
      Used in case the analysis could not determine a clause.
  • Method Details

    • values

      public static StatementCatalog.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 StatementCatalog.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