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

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

Uses of Evaluator in org.apache.hivemind.conditional
 

Classes in org.apache.hivemind.conditional that implement Evaluator
 class AndEvaluator
          And operation, evaluates the left node and then (perhaps) the right node (short circuiting may take place).
 class ClassNameEvaluator
          Evaluator for a fully qualified class name.
 class NotEvaluator
          Evaluates the left child of its peer Node and inverts the result.
 class OrEvaluator
          Or operation, returns true if either left or right Node evaluates to true.
 class PropertyEvaluator
          Evaluates a system property and returns true if its value is true.
 

Constructors in org.apache.hivemind.conditional with parameters of type Evaluator
NodeImpl(Evaluator evaluator)
          Alternate constructor used for terminal nodes.
NodeImpl(Node left, Node right, Evaluator evaluator)