Class 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 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
    • Constructor Detail

      • ProcedureCallFeatures

        public ProcedureCallFeatures​(java.lang.Boolean inQueryCall,
                                     java.lang.Boolean standaloneCall,
                                     java.lang.Boolean yield)
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object other)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • withStandaloneCall

        public ProcedureCallFeatures withStandaloneCall​(java.lang.Boolean standaloneCall)