|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcdx.scorebot.scoring.logic.ConditionalOrExpression
public class ConditionalOrExpression
holds a conditional OR expression
| Constructor Summary | |
|---|---|
ConditionalOrExpression(ConditionalAndExpression leftOperand)
instantiate the conditional OR expression |
|
| Method Summary | |
|---|---|
Literal |
evaluateLogic(Context context)
evaluate this expression in the specified context |
static boolean |
evaluateOR(Context context,
Literal leftOperand,
java.util.Vector<ConditionalAndExpression> rightOperands)
Returns the short-circuit evaluation of the expression leftOperand || rightOperands[0] || rightOperands[1] ... |
LiteralType |
evaluateTypeOnly(java.util.HashMap<java.lang.String,LiteralType> varTypes,
java.util.HashMap<java.lang.String,TestData> testsInfo)
returns the kind of literal this evaluates to |
void |
or(ConditionalAndExpression operand)
evaluates this expression OR'ed with this operand |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ConditionalOrExpression(ConditionalAndExpression leftOperand)
leftOperand - left operand| Method Detail |
|---|
public Literal evaluateLogic(Context context)
throws LogicException
evaluateLogic in interface LogicCodeEvaluatablecontext - contains the current context of the logic processor
TypeMismatchException - thrown if an operand isn't of the required type
LogicException - thrown if an exception occurs while processing the logic
public static boolean evaluateOR(Context context,
Literal leftOperand,
java.util.Vector<ConditionalAndExpression> rightOperands)
throws TypeMismatchException,
LogicException
context - contains the current context of the logic processorleftOperand - the value on the left side of the OR operatorrightOperands - the values being OR'ed together on the right side of the OR operator
TypeMismatchException - thrown if an operand isn't of the required type
LogicException - thrown if an exception occurs while processing the logic
public LiteralType evaluateTypeOnly(java.util.HashMap<java.lang.String,LiteralType> varTypes,
java.util.HashMap<java.lang.String,TestData> testsInfo)
throws LogicException
LogicCodeEvaluatable
evaluateTypeOnly in interface LogicCodeEvaluatablevarTypes - contains the type of value stored by each variable (variables names are keys)testsInfo - information about each test item keyed on test item names this logic may hold
LogicException - thrown if there is a problem with type which prevents this from being evaluatedpublic void or(ConditionalAndExpression operand)
operand - the operand to add to the expression
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||