Class AstEval

    • Constructor Detail

      • AstEval

        public AstEval​(AstNode child,
                       boolean deferred)
    • Method Detail

      • isDeferred

        public boolean isDeferred()
      • isLeftValue

        public boolean isLeftValue()
        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()
        Returns:
        true if the subtree rooted at this node is a method invocation.
      • toString

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

        public MethodInfo getMethodInfo​(Bindings bindings,
                                        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.
        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,
                                       ELContext context,
                                       java.lang.Class<?> returnType,
                                       java.lang.Class<?>[] paramTypes,
                                       java.lang.Object[] paramValues)
        Description copied from interface: ExpressionNode
        Invoke method.
        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
        paramValues - parameter values
        Returns:
        result of the method invocation
      • isLiteralText

        public boolean isLiteralText()
        Returns:
        true if this node represents literal text
      • setValue

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

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

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