Package hydra.ext.cypher.openCypher
Class MultiPartQuery
- java.lang.Object
-
- hydra.ext.cypher.openCypher.MultiPartQuery
-
- All Implemented Interfaces:
java.io.Serializable
public class MultiPartQuery extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description SinglePartQuery
body
static Name
FIELD_NAME_BODY
static Name
FIELD_NAME_WITH
static Name
TYPE_NAME
java.util.List<WithClause>
with
-
Constructor Summary
Constructors Constructor Description MultiPartQuery(java.util.List<WithClause> with, SinglePartQuery body)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
hashCode()
MultiPartQuery
withBody(SinglePartQuery body)
MultiPartQuery
withWith(java.util.List<WithClause> with)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_WITH
public static final Name FIELD_NAME_WITH
-
FIELD_NAME_BODY
public static final Name FIELD_NAME_BODY
-
with
public final java.util.List<WithClause> with
-
body
public final SinglePartQuery body
-
-
Constructor Detail
-
MultiPartQuery
public MultiPartQuery(java.util.List<WithClause> with, SinglePartQuery body)
-
-
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
-
withWith
public MultiPartQuery withWith(java.util.List<WithClause> with)
-
withBody
public MultiPartQuery withBody(SinglePartQuery body)
-
-