|
Venice 0.7beta | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.mov.parser.expression.AbstractExpression org.mov.parser.expression.UnaryExpression org.mov.parser.expression.DefineVariableExpression
public class DefineVariableExpression
A representation of a variable definition.
Field Summary |
---|
Fields inherited from interface org.mov.parser.Expression |
---|
BOOLEAN_TYPE, FALSE, FLOAT_QUOTE_TYPE, FLOAT_TYPE, INTEGER_QUOTE_TYPE, INTEGER_TYPE, STRING_TYPE, TRUE, TRUE_LEVEL |
Constructor Summary | |
---|---|
DefineVariableExpression(java.lang.String name,
int type,
boolean isConstant,
Expression value)
|
Method Summary | |
---|---|
int |
checkType()
Perform type checking on the expression. |
java.lang.Object |
clone()
|
boolean |
equals(java.lang.Object object)
Returns whether this expression tree and the given expression tree are equivalent. |
double |
evaluate(Variables variables,
QuoteBundle quoteBundle,
Symbol symbol,
int day)
Evaluates the given expression and returns the result. |
java.lang.String |
getName()
|
int |
getType()
Get the type of the expression. |
boolean |
isConstant()
|
java.lang.String |
toString()
Convert the given expression to a string. |
Methods inherited from class org.mov.parser.expression.UnaryExpression |
---|
getChildCount |
Methods inherited from class org.mov.parser.expression.AbstractExpression |
---|
getChild, getIndex, getNumberFormat, getParent, hashCode, isRoot, iterator, parseDouble, parseInt, setChild, setParent, simplify, size, size, valueOfDouble, valueOfInt |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public DefineVariableExpression(java.lang.String name, int type, boolean isConstant, Expression value)
Method Detail |
---|
public double evaluate(Variables variables, QuoteBundle quoteBundle, Symbol symbol, int day) throws EvaluationException
Expression
variables
- variable storage area for expressionquoteBundle
- the quote bundle containing quote data to usesymbol
- the current symbolday
- current date in cache fast access format
EvaluationException
- if the expression performs an illegal
operation such as divide by zero.public java.lang.String toString()
Expression
toString
in interface Expression
toString
in class java.lang.Object
public java.lang.String getName()
public int getType()
Expression
Expression.BOOLEAN_TYPE
, Expression.FLOAT_TYPE
,
Expression.INTEGER_TYPE
, Expression.FLOAT_QUOTE_TYPE
or
Expression.INTEGER_QUOTE_TYPE
.public boolean isConstant()
public int checkType() throws TypeMismatchException
Expression
TypeMismatchException
- if the expression has incorrect typespublic boolean equals(java.lang.Object object)
AbstractExpression
equals
in interface Expression
equals
in class AbstractExpression
object
- the other expressionpublic java.lang.Object clone()
clone
in interface Expression
clone
in class AbstractExpression
|
Venice 0.7beta | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |