
public class RandomParameter extends AbstractParameter<RandomFactory>
| Modifier and Type | Field and Description | 
|---|---|
| (package private) Long | seedSeed value, if used | 
constraints, defaultValue, givenValue, optionalParameter, optionid, shortDescription| Constructor and Description | 
|---|
| RandomParameter(OptionID optionID)Constructor without default. | 
| RandomParameter(OptionID optionID,
               long seed)Constructor with default seed value. | 
| RandomParameter(OptionID optionID,
               RandomFactory defaultValue)Constructor with default value. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getDefaultValueAsString()Get the default value as string. | 
| Object | getGivenValue()Get the last given value. | 
| String | getSyntax()Returns a string representation of the parameter's type (e.g. an
  IntParametershould return<int>). | 
| String | getValueAsString()Get the value as string. | 
| protected RandomFactory | parseValue(Object obj)Parse a given value into the destination type. | 
| void | setValue(Object obj)Sets the value of the option. | 
addConstraint, addConstraints, getDefaultValue, getFullDescription, getName, getOptionID, getShortDescription, getValue, getValuesDescription, hasDefaultValue, hasValuesDescription, isDefined, isOptional, isValid, setDefaultValue, setOptional, setShortDescription, setValueInternal, tookDefaultValue, tryDefaultValue, useDefaultValue, validateLong seed
public RandomParameter(OptionID optionID)
optionID - Option IDpublic RandomParameter(OptionID optionID, RandomFactory defaultValue)
null,
 which means a new random will be generated.optionID - Option IDdefaultValue - Default value. If null, a new random object
        will be created.public RandomParameter(OptionID optionID, long seed)
optionID - Option IDseed - Default seed.public String getSyntax()
ParameterIntParameter
 should return <int>).getSyntax in interface Parameter<RandomFactory>getSyntax in class AbstractParameter<RandomFactory>public void setValue(Object obj) throws ParameterException
ParametersetValue in interface Parameter<RandomFactory>setValue in class AbstractParameter<RandomFactory>obj - the option's value to be setParameterException - if the given value is not a valid value for this
         option.protected RandomFactory parseValue(Object obj) throws ParameterException
AbstractParameterparseValue in class AbstractParameter<RandomFactory>obj - Object to parse (may be a string representation!)ParameterException - when the object cannot be parsed.public Object getGivenValue()
ParameternullgetGivenValue in interface Parameter<RandomFactory>getGivenValue in class AbstractParameter<RandomFactory>public String getValueAsString()
ParameternullgetValueAsString in interface Parameter<RandomFactory>getValueAsString in class AbstractParameter<RandomFactory>public String getDefaultValueAsString()
ParametergetDefaultValueAsString in interface Parameter<RandomFactory>getDefaultValueAsString in class AbstractParameter<RandomFactory>