Package edu.wisc.game.parser
Class Expression.Num
java.lang.Object
edu.wisc.game.parser.Expression.Num
- All Implemented Interfaces:
Expression
,Expression.ArithmeticExpression
- Enclosing interface:
- Expression
public static class Expression.Num extends Object implements Expression.ArithmeticExpression
A numeric constant
-
Nested Class Summary
Nested classes/interfaces inherited from interface edu.wisc.game.parser.Expression
Expression.AdditiveExpression, Expression.ArithmeticExpression, Expression.BracketList, Expression.ColonExpression, Expression.ComparisonExpression, Expression.ExList, Expression.Id, Expression.Mapper, Expression.MapTo<T>, Expression.MultiplicativeExpression, Expression.NegationExpression, Expression.Num, Expression.ParenList, Expression.PropMap, Expression.QualifiedId, Expression.RangeExpression, Expression.SerialExpression, Expression.Star, Expression.VarMap, Expression.VarMap2
-
Field Summary
Fields Modifier and Type Field Description int
nVal
-
Constructor Summary
Constructors Constructor Description Num(int n)
-
Method Summary
Modifier and Type Method Description HashSet<Integer>
evalSet(HashMap<String,HashSet<Integer>> h)
Evaluates this expression for the given values of the variables involved.HashSet<Object>
evalSet2(Expression.VarMap2 h)
HashSet<String>
listAllVars()
Expression
map(Expression.Mapper mapper)
String
toSrc()
String
toString()
-
Field Details
-
nVal
public final int nVal
-
-
Constructor Details
-
Num
public Num(int n)
-
-
Method Details
-
evalSet
Description copied from interface:Expression.ArithmeticExpression
Evaluates this expression for the given values of the variables involved. Can be used when the arguments can have multiple values.- Specified by:
evalSet
in interfaceExpression.ArithmeticExpression
- Parameters:
h
- The hash map that contains for each variable the possible set of its values.- Returns:
- the set of the possible values of the expression, or an empty set if the expression uses a variable whose value is not in h
-
evalSet2
- Specified by:
evalSet2
in interfaceExpression.ArithmeticExpression
-
toString
-
toSrc
- Specified by:
toSrc
in interfaceExpression
-
listAllVars
- Specified by:
listAllVars
in interfaceExpression.ArithmeticExpression
-
map
- Specified by:
map
in interfaceExpression
- Throws:
RuleParseException
-