Package hydra.ext.cypher.features
Class MatchFeatures
- java.lang.Object
-
- hydra.ext.cypher.features.MatchFeatures
-
- All Implemented Interfaces:
java.io.Serializable
public class MatchFeatures extends java.lang.Object implements java.io.Serializable
Match queries- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static Name
FIELD_NAME_MATCH
static Name
FIELD_NAME_OPTIONAL_MATCH
java.lang.Boolean
match
The basic (non-optional) MATCH clausejava.lang.Boolean
optionalMatch
OPTIONAL MATCHstatic Name
TYPE_NAME
-
Constructor Summary
Constructors Constructor Description MatchFeatures(java.lang.Boolean match, java.lang.Boolean optionalMatch)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
hashCode()
MatchFeatures
withMatch(java.lang.Boolean match)
MatchFeatures
withOptionalMatch(java.lang.Boolean optionalMatch)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_MATCH
public static final Name FIELD_NAME_MATCH
-
FIELD_NAME_OPTIONAL_MATCH
public static final Name FIELD_NAME_OPTIONAL_MATCH
-
match
public final java.lang.Boolean match
The basic (non-optional) MATCH clause
-
optionalMatch
public final java.lang.Boolean optionalMatch
OPTIONAL MATCH
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
withMatch
public MatchFeatures withMatch(java.lang.Boolean match)
-
withOptionalMatch
public MatchFeatures withOptionalMatch(java.lang.Boolean optionalMatch)
-
-