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 NodeImpl.getLeft()
           
 Node Node.getLeft()
           
 Node NodeImpl.getRight()
           
 Node Node.getRight()
           
 Node Parser.parse(java.lang.String input)
           
 

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)