org.processmining.mining.geneticmining.util
Class ParameterValue
java.lang.Object
org.processmining.mining.geneticmining.util.ParameterValue
public class ParameterValue
- extends java.lang.Object
Title: Parameters and Value
Description: This class stores an object that has a parameter name, its double value and its description.
- Version:
- 1.0
- Author:
- Ana Karla A. de Medeiros
Constructor Summary |
ParameterValue(java.lang.String parameterName,
double defaultvalue,
double minValue,
double maxValue,
double stepSize,
java.lang.String parameterDescription)
Creates the object. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ParameterValue
public ParameterValue(java.lang.String parameterName,
double defaultvalue,
double minValue,
double maxValue,
double stepSize,
java.lang.String parameterDescription)
- Creates the object.
- Parameters:
parameterName
- String - name of the parameter.defaultvalue
- double - value of the parameter.minValue
- double - minimum value of the parameter.maxValue
- double - maximum value of the parameter.stepSize
- double - size of the increment for this value. (Useful for interfaces)parameterDescription
- String - the parameter description.
getMaxValue
public double getMaxValue()
getMinValue
public double getMinValue()
getStepSize
public double getStepSize()
getParameter
public java.lang.String getParameter()
getDefaultValue
public double getDefaultValue()
getDescription
public java.lang.String getDescription()