Environment for
DeveLoping
KDD-Applications
Supported by Index-Structures

de.lmu.ifi.dbs.elki.utilities.optionhandling
Class DoubleListParameter

java.lang.Object
  extended by de.lmu.ifi.dbs.elki.logging.AbstractLoggable
      extended by de.lmu.ifi.dbs.elki.utilities.optionhandling.Option<T>
          extended by de.lmu.ifi.dbs.elki.utilities.optionhandling.Parameter<List<T>,List<T>>
              extended by de.lmu.ifi.dbs.elki.utilities.optionhandling.ListParameter<Double>
                  extended by de.lmu.ifi.dbs.elki.utilities.optionhandling.DoubleListParameter
All Implemented Interfaces:
Loggable

public class DoubleListParameter
extends ListParameter<Double>

Paramter class for a parameter specifying a list of double values.

Author:
Steffi Wanka

Field Summary
 
Fields inherited from class de.lmu.ifi.dbs.elki.utilities.optionhandling.ListParameter
SPLIT, VECTOR_SPLIT
 
Fields inherited from class de.lmu.ifi.dbs.elki.utilities.optionhandling.Parameter
constraints, defaultValue, optionalParameter
 
Fields inherited from class de.lmu.ifi.dbs.elki.utilities.optionhandling.Option
name, shortDescription, value
 
Fields inherited from class de.lmu.ifi.dbs.elki.logging.AbstractLoggable
debug
 
Constructor Summary
DoubleListParameter(String name, String description)
          Deprecated.  
DoubleListParameter(String name, String description, ParameterConstraint<List<Double>> con)
          Deprecated.  
 
Method Summary
protected  String getParameterType()
          Returns a string representation of the parameter's type.
 boolean isValid(String value)
          Checks if the given argument is valid for this option.
 void setDefaultValue(double allListDefaultValue)
          Sets the default value of this parameter.
 void setValue(String value)
          Sets the value of the option.
 
Methods inherited from class de.lmu.ifi.dbs.elki.utilities.optionhandling.ListParameter
getListSize, toString
 
Methods inherited from class de.lmu.ifi.dbs.elki.utilities.optionhandling.Parameter
addConstraint, addConstraintList, getDefaultValue, getDescription, getValue, hasDefaultValue, isOptional, isSet, reset, setDefaultValue, setDefaultValueToValue, setOptional, tookDefaultValue
 
Methods inherited from class de.lmu.ifi.dbs.elki.utilities.optionhandling.Option
getName, getShortDescription, setShortDescription
 
Methods inherited from class de.lmu.ifi.dbs.elki.logging.AbstractLoggable
debugFine, debugFiner, debugFinest, exception, message, progress, progress, progress, verbose, verbose, warning
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DoubleListParameter

@Deprecated
public DoubleListParameter(String name,
                                      String description)
Deprecated. 

Constructs a double list parameter with the given name and description.

Parameters:
name - the parameter name
description - the parameter description

DoubleListParameter

@Deprecated
public DoubleListParameter(String name,
                                      String description,
                                      ParameterConstraint<List<Double>> con)
Deprecated. 

Constructs a double list parameter with the given name, description, and parameter constraint.

Parameters:
name - the parameter name
description - the parameter description
con - the parameter constraint of this double list parameter
Method Detail

setValue

public void setValue(String value)
              throws ParameterException
Description copied from class: Option
Sets the value of the option.

Specified by:
setValue in class Option<List<Double>>
Parameters:
value - the option's value to be set
Throws:
ParameterException - if the given value is not a valid value for this option.
See Also:
Option.setValue(String)

isValid

public boolean isValid(String value)
                throws ParameterException
Description copied from class: Option
Checks if the given argument is valid for this option.

Specified by:
isValid in class Option<List<Double>>
Parameters:
value - option value to be checked
Returns:
true, if the given value is valid for this option
Throws:
ParameterException - if the given value is not a valid value for this option.
See Also:
Option.isValid(java.lang.String)

setDefaultValue

public void setDefaultValue(double allListDefaultValue)
Sets the default value of this parameter.

Parameters:
allListDefaultValue - default value for all list elements of this parameter

getParameterType

protected String getParameterType()
Returns a string representation of the parameter's type.

Specified by:
getParameterType in class Parameter<List<Double>,List<Double>>
Returns:
"<double_1,...,double_n>"
See Also:
Parameter.getParameterType()

Release 0.1 (2008-07-10_1838)