- All Implemented Interfaces:
Serializable,Comparable<StatementCatalog.Clause>,Constable
- Enclosing interface:
- StatementCatalog
Enum for the clause in which a comparison was made.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe comparison was used in aCREATEclause.The comparison was used in aDELETEclause.The comparison was used in aMATCHclause.The comparison was used in aMERGEclause.Used in case the analysis could not determine a clause.The comparison was used in aWITHclause. -
Method Summary
Modifier and TypeMethodDescriptionstatic StatementCatalog.ClauseReturns the enum constant of this class with the specified name.static StatementCatalog.Clause[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MATCH
The comparison was used in aMATCHclause. -
CREATE
The comparison was used in aCREATEclause. -
MERGE
The comparison was used in aMERGEclause. -
DELETE
The comparison was used in aDELETEclause. -
WITH
The comparison was used in aWITHclause. TheWITHclause is different to theWHEREclause as here "WHERE simply filters the results." (quoting from where). -
UNKNOWN
Used in case the analysis could not determine a clause.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-