Uses of Class
cdx.scorebot.scoring.logic.ConditionalXorExpression

Packages that use ConditionalXorExpression
cdx.scorebot.scoring.logic Contains the data structures used to hold and process the information parsed by the Scoring Logic lexical analyzer. 
cdx.scorebot.scoring.logic.parser Contains the Scoring Logic lexical analyzer and parser. 
 

Uses of ConditionalXorExpression in cdx.scorebot.scoring.logic
 

Methods in cdx.scorebot.scoring.logic with parameters of type ConditionalXorExpression
 void ConditionalAndExpression.and(ConditionalXorExpression operand)
          evaluates this expression AND'ed with this operand
 

Method parameters in cdx.scorebot.scoring.logic with type arguments of type ConditionalXorExpression
static boolean ConditionalAndExpression.evaluateAND(Context context, Literal leftOperand, java.util.Vector<ConditionalXorExpression> rightOperands)
          Returns the short-circuit evaluation of the expression leftOperand && rightOperands[0] && rightOperands[1] ...
 

Constructors in cdx.scorebot.scoring.logic with parameters of type ConditionalXorExpression
ConditionalAndExpression(ConditionalXorExpression leftOperand)
          instantiate the conditional OR expression
 

Uses of ConditionalXorExpression in cdx.scorebot.scoring.logic.parser
 

Methods in cdx.scorebot.scoring.logic.parser that return ConditionalXorExpression
 ConditionalXorExpression LogicParser.prExclusiveOrExpression()