Class ConditionalNode

  • All Implemented Interfaces:
    IParsedExpression, Node, java.io.Serializable

    public class ConditionalNode
    extends ExpressionNode
    Conditional node returns the value of it's second or third child node depending on the truth value of it's first child.
    See Also:
    Serialized Form
    • Constructor Detail

      • ConditionalNode

        public ConditionalNode​(jadex.javaparser.javaccimpl.ParserImpl p,
                               int id)
        Create a node.
        Parameters:
        p - The parser.
        id - The id.
    • Method Detail

      • precompile

        public void precompile()
        Check argument types, and precompute expression when some children are constant.
        Overrides:
        precompile in class ExpressionNode
      • getValue

        public java.lang.Object getValue​(IValueFetcher fetcher)
        Evaluate the expression in the given state with respect to given parameters.
        Specified by:
        getValue in interface IParsedExpression
        Specified by:
        getValue in class ExpressionNode
        Parameters:
        params - The parameters (string, value pairs), if any.
        Returns:
        The value of the term.
      • toPlainString

        public java.lang.String toPlainString()
        Create a string representation of this node and its subnodes.
        Specified by:
        toPlainString in interface Node
        Overrides:
        toPlainString in class ExpressionNode
        Returns:
        A string representation of this node.