Class RdKNNTreeFactory.Par<O extends NumberVector>
- java.lang.Object
-
- elki.index.PagedIndexFactory.Par<O>
-
- elki.index.tree.spatial.rstarvariants.rdknn.RdKNNTreeFactory.Par<O>
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- RdKNNTreeFactory<O extends NumberVector>
public static class RdKNNTreeFactory.Par<O extends NumberVector> extends PagedIndexFactory.Par<O>
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
-
Fields inherited from class elki.index.tree.spatial.rstarvariants.AbstractRStarTreeFactory.Par
BULK_SPLIT_ID, INSERTION_STRATEGY_ID, MINIMUM_FILL_ID, OVERFLOW_STRATEGY_ID, settings, SPLIT_STRATEGY_ID
-
Fields inherited from class elki.index.PagedIndexFactory.Par
PAGEFILE_ID, pageFileFactory
-
-
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.protected RdkNNSettings
createSettings()
Create the settings objectRdKNNTreeFactory<O>
make()
Make an instance after successful configuration.-
Methods inherited from class elki.index.tree.spatial.rstarvariants.AbstractRStarTreeFactory.Par
configBulkLoad
-
-
-
-
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
- Overrides:
configure
in classAbstractRStarTreeFactory.Par<O extends NumberVector,RdkNNSettings>
- Parameters:
config
- Parameterization
-
make
public RdKNNTreeFactory<O> make()
Description copied from interface:Parameterizer
Make an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Object
as return type.- Specified by:
make
in interfaceParameterizer
- Specified by:
make
in classAbstractRStarTreeFactory.Par<O extends NumberVector,RdkNNSettings>
- Returns:
- a new instance
-
createSettings
protected RdkNNSettings createSettings()
Description copied from class:AbstractRStarTreeFactory.Par
Create the settings object- Specified by:
createSettings
in classAbstractRStarTreeFactory.Par<O extends NumberVector,RdkNNSettings>
- Returns:
- Settings instance.
-
-