Package hydra.ext.cypher.features
Class ProcedureCallFeatures
- java.lang.Object
-
- hydra.ext.cypher.features.ProcedureCallFeatures
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ProcedureCallFeatures>
public class ProcedureCallFeatures extends java.lang.Object implements java.io.Serializable, java.lang.Comparable<ProcedureCallFeatures>
Procedure calls- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static NameIN_QUERY_CALLjava.lang.BooleaninQueryCallCALL within a querystatic NameSTANDALONE_CALLjava.lang.BooleanstandaloneCallStandalone / top-level CALLstatic NameTYPE_java.lang.BooleanyieldThe YIELD clause in CALLstatic NameYIELD
-
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 intcompareTo(ProcedureCallFeatures other)booleanequals(java.lang.Object other)inthashCode()ProcedureCallFeatureswithInQueryCall(java.lang.Boolean inQueryCall)ProcedureCallFeatureswithStandaloneCall(java.lang.Boolean standaloneCall)ProcedureCallFeatureswithYield(java.lang.Boolean yield)
-
-
-
Field Detail
-
TYPE_
public static final Name TYPE_
-
IN_QUERY_CALL
public static final Name IN_QUERY_CALL
-
STANDALONE_CALL
public static final Name STANDALONE_CALL
-
YIELD
public static final 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:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
compareTo
public int compareTo(ProcedureCallFeatures other)
- Specified by:
compareToin interfacejava.lang.Comparable<ProcedureCallFeatures>
-
withInQueryCall
public ProcedureCallFeatures withInQueryCall(java.lang.Boolean inQueryCall)
-
withStandaloneCall
public ProcedureCallFeatures withStandaloneCall(java.lang.Boolean standaloneCall)
-
withYield
public ProcedureCallFeatures withYield(java.lang.Boolean yield)
-
-