Venice 0.7beta

org.mov.parser.expression
Class PercentExpression

java.lang.Object
  extended by org.mov.parser.expression.AbstractExpression
      extended by org.mov.parser.expression.BinaryExpression
          extended by org.mov.parser.expression.PercentExpression
All Implemented Interfaces:
java.lang.Cloneable, Expression

public class PercentExpression
extends BinaryExpression

An expression which returns the given percent of a value.


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
PercentExpression(Expression left, Expression right)
          Create a new percent expression.
 
Method Summary
 int checkType()
          Either argument can be Expression.INTEGER_TYPE or Expression.FLOAT_TYPE.
 java.lang.Object clone()
           
 double evaluate(Variables variables, QuoteBundle quoteBundle, Symbol symbol, int day)
          Evaluates the given expression and returns the result.
 int getType()
          Get the type of the expression.
 Expression simplify()
          Perform simplifications and optimisations on the expression tree.
 java.lang.String toString()
          Convert the given expression to a string.
 
Methods inherited from class org.mov.parser.expression.BinaryExpression
getChildCount, toString
 
Methods inherited from class org.mov.parser.expression.AbstractExpression
equals, getChild, getIndex, getNumberFormat, getParent, hashCode, isRoot, iterator, parseDouble, parseInt, setChild, setParent, size, size, valueOfDouble, valueOfInt
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PercentExpression

public PercentExpression(Expression left,
                         Expression right)
Create a new percent expression.

Parameters:
left - calculate the percent of this number
right - the percent value to calculate
Method Detail

evaluate

public double evaluate(Variables variables,
                       QuoteBundle quoteBundle,
                       Symbol symbol,
                       int day)
                throws EvaluationException
Description copied from interface: Expression
Evaluates the given expression and returns the result.

Parameters:
variables - variable storage area for expression
quoteBundle - the quote bundle containing quote data to use
symbol - the current symbol
day - current date in cache fast access format
Returns:
the result of the expression
Throws:
EvaluationException - if the expression performs an illegal operation such as divide by zero.

simplify

public Expression simplify()
Description copied from class: AbstractExpression
Perform simplifications and optimisations on the expression tree. For example, if the expression tree was a and true then the expression tree would be simplified to a.

Specified by:
simplify in interface Expression
Overrides:
simplify in class AbstractExpression

toString

public java.lang.String toString()
Description copied from interface: Expression
Convert the given expression to a string.

Specified by:
toString in interface Expression
Overrides:
toString in class java.lang.Object
Returns:
the string representation of the expression

checkType

public int checkType()
              throws TypeMismatchException
Either argument can be Expression.INTEGER_TYPE or Expression.FLOAT_TYPE.

Returns:
the left argument type
Throws:
TypeMismatchException - if the expression has incorrect types

getType

public int getType()
Get the type of the expression.

Returns:
Expression.FLOAT_TYPE or Expression.INTEGER_TYPE.

clone

public java.lang.Object clone()
Specified by:
clone in interface Expression
Specified by:
clone in class AbstractExpression

Venice 0.7beta