Package elki.distance.timeseries
Class AbstractEditDistance.Par
- java.lang.Object
-
- elki.distance.timeseries.AbstractEditDistance.Par
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
DTWDistance.Par
,EDRDistance.Par
,ERPDistance.Par
- Enclosing class:
- AbstractEditDistance
public abstract static class AbstractEditDistance.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected double
bandSize
Keeps the currently set bandSize.static OptionID
BANDSIZE_ID
Bandsize parameter.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(Parameterization config)
Configure the class.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.utilities.optionhandling.Parameterizer
make
-
-
-
-
Field Detail
-
BANDSIZE_ID
public static final OptionID BANDSIZE_ID
Bandsize parameter.
-
bandSize
protected double bandSize
Keeps the currently set bandSize.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:Parameterizer
Configure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
configure
in interfaceParameterizer
- Parameters:
config
- Parameterization
-
-