Package | Description |
---|---|
de.lmu.ifi.dbs.elki.database |
ELKI database layer - loading, storing, indexing and accessing data
|
de.lmu.ifi.dbs.elki.datasource |
Data normalization (and reconstitution) of data sets.
|
Modifier and Type | Field and Description |
---|---|
protected DatabaseConnection |
StaticArrayDatabase.databaseConnection
The data source we get the initial data from.
|
protected DatabaseConnection |
StaticArrayDatabase.Parameterizer.databaseConnection
Holds the database connection to get the initial data from.
|
protected DatabaseConnection |
HashmapDatabase.databaseConnection
The data source we get the initial data from.
|
protected DatabaseConnection |
HashmapDatabase.Parameterizer.databaseConnection
Holds the database connection to get the initial data from.
|
Constructor and Description |
---|
HashmapDatabase(DatabaseConnection databaseConnection,
Collection<IndexFactory<?,?>> indexFactories)
Constructor.
|
StaticArrayDatabase(DatabaseConnection databaseConnection,
Collection<IndexFactory<?,?>> indexFactories)
Constructor.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractDatabaseConnection
Abstract super class for all database connections.
|
class |
EmptyDatabaseConnection
Pseudo database that is empty.
|
class |
ExternalIDJoinDatabaseConnection
Joins multiple data sources by their label
|
class |
FileBasedDatabaseConnection
Provides a file based database connection based on the parser to be set.
|
class |
GeneratorXMLDatabaseConnection |
class |
InputStreamDatabaseConnection
Provides a database connection expecting input from an input stream such as
stdin.
|
class |
LabelJoinDatabaseConnection
Joins multiple data sources by their label
|
class |
RandomDoubleVectorDatabaseConnection
Produce a database of random double vectors with each dimension in [0:1]
|
Modifier and Type | Field and Description |
---|---|
protected List<DatabaseConnection> |
ExternalIDJoinDatabaseConnection.sources
The filters to invoke
|
protected List<DatabaseConnection> |
ExternalIDJoinDatabaseConnection.Parameterizer.sources
The data souces to use.
|
protected List<DatabaseConnection> |
LabelJoinDatabaseConnection.sources
The filters to invoke
|
protected List<DatabaseConnection> |
LabelJoinDatabaseConnection.Parameterizer.sources
The data souces to use.
|
Constructor and Description |
---|
ExternalIDJoinDatabaseConnection(List<ObjectFilter> filters,
List<DatabaseConnection> sources)
Constructor.
|
LabelJoinDatabaseConnection(List<ObjectFilter> filters,
List<DatabaseConnection> sources)
Constructor.
|