Class PowerOfOperation
- java.lang.Object
-
- de.fho.jump.pirol.utilities.FormulaParsing.FormulaValue
-
- de.fho.jump.pirol.utilities.FormulaParsing.Operations.GenericOperation
-
- de.fho.jump.pirol.utilities.FormulaParsing.Operations.PowerOfOperation
-
public class PowerOfOperation extends GenericOperation
Class to handle Math.pow() like operations. The result is a value that equalsMath.pow(value1, value2)
.- Version:
- $Rev$
- Author:
- Ole Rahn
FH Osnabrück - University of Applied Sciences Osnabrück,
Project: PIROL (2005),
Subproject: Daten- und Wissensmanagement
-
-
Field Summary
-
Fields inherited from class de.fho.jump.pirol.utilities.FormulaParsing.Operations.GenericOperation
opString, value1, value2
-
Fields inherited from class de.fho.jump.pirol.utilities.FormulaParsing.FormulaValue
logger
-
-
Constructor Summary
Constructors Constructor Description PowerOfOperation(FormulaValue value1, FormulaValue value2)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getValue(Feature feature)
Returns the value (as a double) of this part of the formula.String
toString()
-
Methods inherited from class de.fho.jump.pirol.utilities.FormulaParsing.Operations.GenericOperation
isFeatureDependent
-
-
-
-
Constructor Detail
-
PowerOfOperation
public PowerOfOperation(FormulaValue value1, FormulaValue value2)
- Parameters:
value1
- first FormulaValue of the power operationvalue2
- second FormulaValue of the power operation
-
-
Method Detail
-
getValue
public double getValue(Feature feature)
Description copied from class:FormulaValue
Returns the value (as a double) of this part of the formula. It may be the result of a sub-formula, a feature-specific attribute value or just a constant value... Since the value may depend on a feature, we give the feature to the method to get a unified interface...- Specified by:
getValue
in classFormulaValue
- Parameters:
feature
- feature to process- Returns:
- Math.pow(value1, value2)
-
toString
public String toString()
- Overrides:
toString
in classGenericOperation
-
-