Uses of Class
de.fho.jump.pirol.utilities.FormulaParsing.FormulaValue

Packages that use FormulaValue
de.fho.jump.pirol.plugins.EditAttributeByFormula   
de.fho.jump.pirol.utilities.FormulaParsing   
de.fho.jump.pirol.utilities.FormulaParsing.Operations   
de.fho.jump.pirol.utilities.FormulaParsing.Values   
org.openjump.core.apitools   
 

Uses of FormulaValue in de.fho.jump.pirol.plugins.EditAttributeByFormula
 

Fields in de.fho.jump.pirol.plugins.EditAttributeByFormula declared as FormulaValue
protected  FormulaValue FormulaEditingPanel.parsedFormula
           
 

Methods in de.fho.jump.pirol.plugins.EditAttributeByFormula that return FormulaValue
 FormulaValue FormulaEditingPanel.getParsedFormula()
           
 FormulaValue EditAttributeByFormulaDialog.getParsedFormula()
           
 

Uses of FormulaValue in de.fho.jump.pirol.utilities.FormulaParsing
 

Methods in de.fho.jump.pirol.utilities.FormulaParsing that return FormulaValue
static FormulaValue FormulaParser.getValue(java.lang.String formula, FeatureSchema featSchema)
          Recursively parses a given (sub-) formula into a FormulaValue, which can be an operation with sub-FormularValues or a value.
 

Uses of FormulaValue in de.fho.jump.pirol.utilities.FormulaParsing.Operations
 

Subclasses of FormulaValue in de.fho.jump.pirol.utilities.FormulaParsing.Operations
 class AdditionOperation
          Class to handle additions within a formula.
 class DivisionOperation
          Class to handle divisions within a formula.
 class GenericOperation
          Base class for mathmatic operations like division, addition, etc.
 class MultiplicationOperation
          Class to handle multiplications within a formula.
 class PowerOfOperation
          Class to handle Math.pow() like operations.
 class SquareRootOperation
          Class that represents a square root operation on the given value.
 class SubtractionOperation
          Class to handle subtractions within a formula.
 

Fields in de.fho.jump.pirol.utilities.FormulaParsing.Operations declared as FormulaValue
protected  FormulaValue SquareRootOperation.value
           
protected  FormulaValue GenericOperation.value1
           
protected  FormulaValue GenericOperation.value2
           
 

Constructors in de.fho.jump.pirol.utilities.FormulaParsing.Operations with parameters of type FormulaValue
AdditionOperation(FormulaValue value1, FormulaValue value2)
          Sets the value, that will be operated on.
DivisionOperation(FormulaValue value1, FormulaValue value2)
          Sets the value, that will be operated on.
GenericOperation(FormulaValue value1, FormulaValue value2)
          Sets the value, that will be operated on.
MultiplicationOperation(FormulaValue value1, FormulaValue value2)
          Sets the value, that will be operated on.
PowerOfOperation(FormulaValue value1, FormulaValue value2)
           
SquareRootOperation(FormulaValue value)
           
SubtractionOperation(FormulaValue value1, FormulaValue value2)
          Sets the value, that will be operated on.
 

Uses of FormulaValue in de.fho.jump.pirol.utilities.FormulaParsing.Values
 

Subclasses of FormulaValue in de.fho.jump.pirol.utilities.FormulaParsing.Values
 class AttributeValue
          Class to extract integer or double values (as double) out of the given Feature...
 class ConstantValue
          A simple value class that just stores a constant value.
 

Uses of FormulaValue in org.openjump.core.apitools
 

Methods in org.openjump.core.apitools with parameters of type FormulaValue
static PirolFeatureCollection FeatureCollectionTools.applyFormulaToFeatureCollection(FeatureCollection oldFc, AttributeInfo attrInfo, FormulaValue formula, boolean clearOldFeatureCollection)
          Method to apply a given formula to the given, new attribute of the given featureCollection