Package elki.database
Class AbstractDatabase.Par
- java.lang.Object
-
- elki.database.AbstractDatabase.Par
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
HashmapDatabase.Par
,StaticArrayDatabase.Par
- Enclosing class:
- AbstractDatabase
public abstract static class AbstractDatabase.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description static OptionID
DATABASE_CONNECTION_ID
Option to specify the data source for the database.static OptionID
INDEX_ID
Parameter to specify the indexes to use.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract Database
make()
Make an instance after successful configuration.-
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
configure
-
-
-
-
Method Detail
-
make
public abstract Database 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
- Returns:
- a new instance
-
-