public class StringParameter extends AbstractParameter<String>
constraints, defaultValue, givenValue, optionalParameter, optionid, shortDescription
Constructor and Description |
---|
StringParameter(OptionID optionID)
Constructs a string parameter with the given optionID.
|
StringParameter(OptionID optionID,
ParameterConstraint<String> constraint)
|
StringParameter(OptionID optionID,
ParameterConstraint<String> constraint,
String defaultValue)
|
StringParameter(OptionID optionID,
String defaultValue)
Constructs a string parameter with the given optionID, and default value.
|
Modifier and Type | Method and Description |
---|---|
String |
getSyntax()
Returns a string representation of the parameter's type.
|
String |
getValueAsString()
Get the value as string.
|
protected String |
parseValue(Object obj)
Parse a given value into the destination type.
|
addConstraint, addConstraints, getDefaultValue, getDefaultValueAsString, getFullDescription, getGivenValue, getName, getOptionID, getShortDescription, getValue, getValuesDescription, hasDefaultValue, hasValuesDescription, isDefined, isOptional, isValid, setDefaultValue, setOptional, setShortDescription, setValue, setValueInternal, tookDefaultValue, tryDefaultValue, useDefaultValue, validate
@Deprecated public StringParameter(OptionID optionID, ParameterConstraint<String> constraint, String defaultValue)
AbstractParameter.addConstraint(de.lmu.ifi.dbs.elki.utilities.optionhandling.constraints.ParameterConstraint<? super T>)
instead!optionID
- the unique id of the parameterconstraint
- parameter constraintdefaultValue
- the default value of the parameter@Deprecated public StringParameter(OptionID optionID, ParameterConstraint<String> constraint)
AbstractParameter.addConstraint(de.lmu.ifi.dbs.elki.utilities.optionhandling.constraints.ParameterConstraint<? super T>)
instead!optionID
- the unique id of the parameterconstraint
- parameter constraintpublic StringParameter(OptionID optionID, String defaultValue)
optionID
- the unique id of the parameterdefaultValue
- the default value of the parameterpublic StringParameter(OptionID optionID)
optionID
- the unique id of the parameterpublic String getValueAsString()
Parameter
null
getValueAsString
in interface Parameter<String>
getValueAsString
in class AbstractParameter<String>
protected String parseValue(Object obj) throws ParameterException
AbstractParameter
parseValue
in class AbstractParameter<String>
obj
- Object to parse (may be a string representation!)ParameterException
- when the object cannot be parsed.