Class AstIdentifier

    • Field Detail

      • name

        private final java.lang.String name
      • index

        private final int index
      • ignoreReturnType

        private final boolean ignoreReturnType
    • Constructor Detail

      • AstIdentifier

        public AstIdentifier​(java.lang.String name,
                             int index)
      • AstIdentifier

        public AstIdentifier​(java.lang.String name,
                             int index,
                             boolean ignoreReturnType)
    • Method Detail

      • isLeftValue

        public boolean isLeftValue()
        Specified by:
        isLeftValue in interface ExpressionNode
        Returns:
        true if the subtree rooted at this node could be used as an lvalue expression (identifier or property sequence with non-literal prefix).
      • isMethodInvocation

        public boolean isMethodInvocation()
        Specified by:
        isMethodInvocation in interface ExpressionNode
        Returns:
        true if the subtree rooted at this node is a method invocation.
      • isLiteralText

        public boolean isLiteralText()
        Specified by:
        isLiteralText in interface ExpressionNode
        Returns:
        true if this node represents literal text
      • getValueReference

        public javax.el.ValueReference getValueReference​(Bindings bindings,
                                                         javax.el.ELContext context)
        Description copied from interface: ExpressionNode
        Get value reference.
        Specified by:
        getValueReference in interface ExpressionNode
        Returns:
        value reference
      • eval

        public java.lang.Object eval​(Bindings bindings,
                                     javax.el.ELContext context)
        Specified by:
        eval in class AstNode
      • setValue

        public void setValue​(Bindings bindings,
                             javax.el.ELContext context,
                             java.lang.Object value)
        Description copied from interface: ExpressionNode
        Assign value.
        Specified by:
        setValue in interface ExpressionNode
        Parameters:
        bindings - bindings containing variables and functions
        context - evaluation context
        value - value to set
      • getMethodExpression

        protected javax.el.MethodExpression getMethodExpression​(Bindings bindings,
                                                                javax.el.ELContext context,
                                                                java.lang.Class<?> returnType,
                                                                java.lang.Class<?>[] paramTypes)
      • getMethodInfo

        public javax.el.MethodInfo getMethodInfo​(Bindings bindings,
                                                 javax.el.ELContext context,
                                                 java.lang.Class<?> returnType,
                                                 java.lang.Class<?>[] paramTypes)
        Description copied from interface: ExpressionNode
        Get method information. If this is a non-lvalue node, answer null.
        Specified by:
        getMethodInfo in interface ExpressionNode
        Parameters:
        bindings - bindings containing variables and functions
        context - evaluation context
        returnType - expected method return type (may be null meaning don't care)
        paramTypes - expected method argument types
        Returns:
        method information or null
      • invoke

        public java.lang.Object invoke​(Bindings bindings,
                                       javax.el.ELContext context,
                                       java.lang.Class<?> returnType,
                                       java.lang.Class<?>[] paramTypes,
                                       java.lang.Object[] params)
        Description copied from interface: ExpressionNode
        Invoke method.
        Specified by:
        invoke in interface ExpressionNode
        Parameters:
        bindings - bindings containing variables and functions
        context - evaluation context
        returnType - expected method return type (may be null meaning don't care)
        paramTypes - expected method argument types
        params - parameter values
        Returns:
        result of the method invocation
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getIndex

        public int getIndex()
        Description copied from interface: IdentifierNode
        Get the unique index of this identifier in the expression (e.g. preorder index)
        Specified by:
        getIndex in interface IdentifierNode
      • getCardinality

        public int getCardinality()
        Description copied from interface: Node
        Get the node's number of children.
        Specified by:
        getCardinality in interface Node
      • getChild

        public AstNode getChild​(int i)
        Description copied from interface: Node
        Get i'th child
        Specified by:
        getChild in interface Node