Uses of Interface
org.apache.hivemind.conditional.Node

Packages that use Node
org.apache.hivemind.conditional Classes and interfaces used in the implementation of conditional contributions. 
 

Uses of Node in org.apache.hivemind.conditional
 

Classes in org.apache.hivemind.conditional that implement Node
 class NodeImpl
          Implementation of Node.
 

Methods in org.apache.hivemind.conditional that return Node
 Node Parser.parse(java.lang.String input)
           
 Node NodeImpl.getLeft()
           
 Node NodeImpl.getRight()
           
 Node Node.getLeft()
           
 Node Node.getRight()
           
 

Methods in org.apache.hivemind.conditional with parameters of type Node
 boolean PropertyEvaluator.evaluate(EvaluationContext context, Node node)
          Invokes EvaluationContext.isPropertySet(String).
 boolean OrEvaluator.evaluate(EvaluationContext context, Node node)
           
 boolean NotEvaluator.evaluate(EvaluationContext context, Node node)
           
 boolean Evaluator.evaluate(EvaluationContext context, Node node)
          Invoked by the Node to evaluate its own value.
 boolean ClassNameEvaluator.evaluate(EvaluationContext context, Node node)
           
 boolean AndEvaluator.evaluate(EvaluationContext context, Node node)
           
 

Constructors in org.apache.hivemind.conditional with parameters of type Node
NodeImpl(Node left, Node right, Evaluator evaluator)
           
NodeImpl(Node left, Node right, Evaluator evaluator)