Package hydra.ext.cypher.features
Class ProcedureCallFeatures
- java.lang.Object
-
- hydra.ext.cypher.features.ProcedureCallFeatures
-
- All Implemented Interfaces:
java.io.Serializable
public class ProcedureCallFeatures extends java.lang.Object implements java.io.Serializable
Procedure calls- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static Name
FIELD_NAME_IN_QUERY_CALL
static Name
FIELD_NAME_STANDALONE_CALL
static Name
FIELD_NAME_YIELD
java.lang.Boolean
inQueryCall
CALL within a queryjava.lang.Boolean
standaloneCall
Standalone / top-level CALLstatic Name
TYPE_NAME
java.lang.Boolean
yield
The YIELD clause in CALL
-
Constructor Summary
Constructors Constructor Description ProcedureCallFeatures(java.lang.Boolean inQueryCall, java.lang.Boolean standaloneCall, java.lang.Boolean yield)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
int
hashCode()
ProcedureCallFeatures
withInQueryCall(java.lang.Boolean inQueryCall)
ProcedureCallFeatures
withStandaloneCall(java.lang.Boolean standaloneCall)
ProcedureCallFeatures
withYield(java.lang.Boolean yield)
-
-
-
Field Detail
-
TYPE_NAME
public static final Name TYPE_NAME
-
FIELD_NAME_IN_QUERY_CALL
public static final Name FIELD_NAME_IN_QUERY_CALL
-
FIELD_NAME_STANDALONE_CALL
public static final Name FIELD_NAME_STANDALONE_CALL
-
FIELD_NAME_YIELD
public static final Name FIELD_NAME_YIELD
-
inQueryCall
public final java.lang.Boolean inQueryCall
CALL within a query
-
standaloneCall
public final java.lang.Boolean standaloneCall
Standalone / top-level CALL
-
yield
public final java.lang.Boolean yield
The YIELD clause in CALL
-
-
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
-
withInQueryCall
public ProcedureCallFeatures withInQueryCall(java.lang.Boolean inQueryCall)
-
withStandaloneCall
public ProcedureCallFeatures withStandaloneCall(java.lang.Boolean standaloneCall)
-
withYield
public ProcedureCallFeatures withYield(java.lang.Boolean yield)
-
-