Class PatternParameter
- java.lang.Object
-
- elki.utilities.optionhandling.parameters.AbstractParameter<PatternParameter,java.util.regex.Pattern>
-
- elki.utilities.optionhandling.parameters.PatternParameter
-
- All Implemented Interfaces:
Parameter<java.util.regex.Pattern>
public class PatternParameter extends AbstractParameter<PatternParameter,java.util.regex.Pattern>
Parameter class for a parameter specifying a pattern.- Since:
- 0.3
- Author:
- Steffi Wanka, Erich Schubert
-
-
Field Summary
-
Fields inherited from class elki.utilities.optionhandling.parameters.AbstractParameter
constraints, defaultValue, givenValue, optionalParameter, optionid
-
-
Constructor Summary
Constructors Constructor Description PatternParameter(OptionID optionID)
Constructs a pattern parameter with the given optionID.PatternParameter(OptionID optionID, java.lang.String defaultValue)
Constructs a pattern parameter with the given optionID, and default value.PatternParameter(OptionID optionID, java.util.regex.Pattern defaultValue)
Constructs a pattern parameter with the given optionID, and default value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getSyntax()
Returns a string representation of the parameter's type.java.lang.String
getValueAsString()
Get the value as string.boolean
grab(Parameterization config, java.util.function.Consumer<java.util.regex.Pattern> consumer)
Get the parameter.protected java.util.regex.Pattern
parseValue(java.lang.Object obj)
Parse a given value into the destination type.-
Methods inherited from class elki.utilities.optionhandling.parameters.AbstractParameter
addConstraint, describeValues, getConstraints, getDefaultValue, getDefaultValueAsString, getOptionID, getValue, hasDefaultValue, isDefined, isOptional, isValid, setDefaultValue, setOptional, setValue, setValueInternal, tookDefaultValue, tryDefaultValue, validate
-
-
-
-
Constructor Detail
-
PatternParameter
public PatternParameter(OptionID optionID, java.util.regex.Pattern defaultValue)
Constructs a pattern parameter with the given optionID, and default value.- Parameters:
optionID
- the unique id of the parameterdefaultValue
- the default value of the parameter
-
PatternParameter
public PatternParameter(OptionID optionID, java.lang.String defaultValue)
Constructs a pattern parameter with the given optionID, and default value.- Parameters:
optionID
- the unique id of the parameterdefaultValue
- the default value of the parameter
-
PatternParameter
public PatternParameter(OptionID optionID)
Constructs a pattern parameter with the given optionID.- Parameters:
optionID
- the unique id of the parameter
-
-
Method Detail
-
getValueAsString
public java.lang.String getValueAsString()
Description copied from interface:Parameter
Get the value as string. May returnnull
- Returns:
- Value as string
-
parseValue
protected java.util.regex.Pattern parseValue(java.lang.Object obj) throws ParameterException
Description copied from class:AbstractParameter
Parse a given value into the destination type.- Specified by:
parseValue
in classAbstractParameter<PatternParameter,java.util.regex.Pattern>
- Parameters:
obj
- Object to parse (may be a string representation!)- Returns:
- Parsed object
- Throws:
ParameterException
- when the object cannot be parsed.
-
getSyntax
public java.lang.String getSyntax()
Returns a string representation of the parameter's type.- Returns:
- "<pattern>"
-
grab
public boolean grab(Parameterization config, java.util.function.Consumer<java.util.regex.Pattern> consumer)
Get the parameter.- Parameters:
config
- Parameterizationconsumer
- Output consumer- Returns:
true
if valid
-
-