Class MultiplicationExpressionStateObject

    • Constructor Detail

      • MultiplicationExpressionStateObject

        public MultiplicationExpressionStateObject​(StateObject parent)
        Creates a new MultiplicationExpressionStateObject.
        Parameters:
        parent - The parent of this state object, which cannot be null
        Throws:
        java.lang.NullPointerException - The given parent cannot be null
      • MultiplicationExpressionStateObject

        public MultiplicationExpressionStateObject​(StateObject parent,
                                                   StateObject leftStateObject,
                                                   StateObject rightStateObject)
        Creates a new MultiplicationExpressionStateObject.
        Parameters:
        parent - The parent of this state object, which cannot be null
        leftStateObject - The StateObject representing the left expression
        rightStateObject - The StateObject representing the right expression
        Throws:
        java.lang.NullPointerException - The given parent cannot be null
      • MultiplicationExpressionStateObject

        public MultiplicationExpressionStateObject​(StateObject parent,
                                                   java.lang.String leftJpqlFragment,
                                                   java.lang.String rightJpqlFragment)
        Creates a new MultiplicationExpressionStateObject.
        Parameters:
        parent - The parent of this state object, which cannot be null
        leftJpqlFragment - The string representation of the left expression to parse and to convert into a StateObject
        rightJpqlFragment - The string representation of the right expression to parse and to convert into a StateObject
        Throws:
        java.lang.NullPointerException - The given parent cannot be null