| Package | Description | 
|---|---|
| de.lmu.ifi.dbs.elki.algorithm | Algorithms suitable as a task for the  KDDTaskmain routine. | 
| de.lmu.ifi.dbs.elki.algorithm.clustering | Clustering algorithms. | 
| de.lmu.ifi.dbs.elki.algorithm.clustering.correlation | Correlation clustering algorithms | 
| de.lmu.ifi.dbs.elki.algorithm.clustering.correlation.cash | Helper classes for the  CASHalgorithm. | 
| de.lmu.ifi.dbs.elki.algorithm.clustering.gdbscan | Generalized DBSCAN. | 
| de.lmu.ifi.dbs.elki.algorithm.clustering.kmeans | K-means clustering and variations. | 
| de.lmu.ifi.dbs.elki.algorithm.clustering.subspace | Axis-parallel subspace clustering algorithms
 
 The clustering algorithms in this package are instances of both, projected clustering algorithms or
 subspace clustering algorithms according to the classical but somewhat obsolete classification schema
 of clustering algorithms for axis-parallel subspaces. | 
| de.lmu.ifi.dbs.elki.algorithm.clustering.subspace.clique | Helper classes for the  CLIQUEalgorithm. | 
| de.lmu.ifi.dbs.elki.algorithm.clustering.trivial | Trivial clustering algorithms: all in one, no clusters, label clusterings
 
 These methods are mostly useful for providing a reference result in evaluation. | 
| de.lmu.ifi.dbs.elki.algorithm.outlier | Outlier detection algorithms | 
| de.lmu.ifi.dbs.elki.algorithm.outlier.meta | Meta outlier detection algorithms: external scores, score rescaling. | 
| de.lmu.ifi.dbs.elki.algorithm.outlier.spatial | Spatial outlier detection algorithms | 
| de.lmu.ifi.dbs.elki.algorithm.outlier.spatial.neighborhood | Spatial outlier neighborhood classes | 
| de.lmu.ifi.dbs.elki.algorithm.outlier.spatial.neighborhood.weighted | Weighted Neighborhood definitions. | 
| de.lmu.ifi.dbs.elki.algorithm.outlier.subspace | Subspace outlier detection methods. | 
| de.lmu.ifi.dbs.elki.algorithm.statistics | Statistical analysis algorithms
 
  The algorithms in this package perform statistical analysis of the data
  (e.g. compute distributions, distance distributions etc.) | 
| de.lmu.ifi.dbs.elki.application.greedyensemble | Greedy ensembles for outlier detection. | 
| de.lmu.ifi.dbs.elki.application.jsmap | JavaScript based map client - server architecture. | 
| de.lmu.ifi.dbs.elki.application.visualization | Visualization applications in ELKI. | 
| de.lmu.ifi.dbs.elki.data | Basic classes for different data types, database object types and label types. | 
| de.lmu.ifi.dbs.elki.data.model | Cluster models classes for various algorithms. | 
| de.lmu.ifi.dbs.elki.data.type | Data type information, also used for type restrictions. | 
| de.lmu.ifi.dbs.elki.database | ELKI database layer - loading, storing, indexing and accessing data | 
| de.lmu.ifi.dbs.elki.database.datastore | General data store layer API (along the lines of  Map<DBID, T>- use everywhere!) | 
| de.lmu.ifi.dbs.elki.database.datastore.memory | Memory data store implementation for ELKI. | 
| de.lmu.ifi.dbs.elki.database.ids | Database object identification and ID group handling API. | 
| de.lmu.ifi.dbs.elki.database.ids.generic | Database object identification and ID group handling - generic implementations. | 
| de.lmu.ifi.dbs.elki.database.ids.integer | Integer-based DBID implementation --
 do not use directly - always use  DBIDUtil. | 
| de.lmu.ifi.dbs.elki.database.query.distance | Prepared queries for distances. | 
| de.lmu.ifi.dbs.elki.database.query.knn | Prepared queries for k nearest neighbor (kNN) queries. | 
| de.lmu.ifi.dbs.elki.database.query.range | Prepared queries for ε-range queries. | 
| de.lmu.ifi.dbs.elki.database.query.rknn | Prepared queries for reverse k nearest neighbor (rkNN) queries. | 
| de.lmu.ifi.dbs.elki.database.query.similarity | Prepared queries for similarity functions. | 
| de.lmu.ifi.dbs.elki.database.relation | Relations, materialized and virtual (views). | 
| de.lmu.ifi.dbs.elki.distance.distancefunction | Distance functions for use within ELKI. | 
| de.lmu.ifi.dbs.elki.distance.distancefunction.adapter | Distance functions deriving distances from e.g. similarity measures | 
| de.lmu.ifi.dbs.elki.distance.distancefunction.correlation | Distance functions using correlations. | 
| de.lmu.ifi.dbs.elki.distance.distancefunction.external | Distance functions using external data sources. | 
| de.lmu.ifi.dbs.elki.distance.distancefunction.subspace | Distance functions based on subspaces. | 
| de.lmu.ifi.dbs.elki.distance.distanceresultlist | Classes for building and storing the results of distance-based queries
 
 The classes in this package essentially form three groups:
 
  KNNHeapfor building kNN results. | 
| de.lmu.ifi.dbs.elki.distance.similarityfunction | Similarity functions. | 
| de.lmu.ifi.dbs.elki.distance.similarityfunction.kernel | Kernel functions. | 
| de.lmu.ifi.dbs.elki.evaluation.clustering.pairsegments | Pair-segment analysis of multiple clusterings. | 
| de.lmu.ifi.dbs.elki.evaluation.outlier | Evaluate an outlier score using a misclassification based cost model. | 
| de.lmu.ifi.dbs.elki.evaluation.roc | Evaluation of rankings using ROC AUC (Receiver Operation Characteristics - Area Under Curve) | 
| de.lmu.ifi.dbs.elki.evaluation.similaritymatrix | Render a distance matrix to visualize a clustering-distance-combination. | 
| de.lmu.ifi.dbs.elki.index | Index structure implementations | 
| de.lmu.ifi.dbs.elki.index.preprocessed | Index structure based on preprocessors | 
| de.lmu.ifi.dbs.elki.index.preprocessed.knn | Indexes providing KNN and rKNN data. | 
| de.lmu.ifi.dbs.elki.index.preprocessed.localpca | Index using a preprocessed local PCA. | 
| de.lmu.ifi.dbs.elki.index.preprocessed.preference | Indexes storing preference vectors. | 
| de.lmu.ifi.dbs.elki.index.preprocessed.snn | Indexes providing nearest neighbor sets | 
| de.lmu.ifi.dbs.elki.index.preprocessed.subspaceproj | Index using a preprocessed local subspaces. | 
| de.lmu.ifi.dbs.elki.index.tree | Tree-based index structures | 
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants | M-Tree and variants. | 
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees | Metrical index structures based on the concepts of the M-Tree
 supporting processing of reverse k nearest neighbor queries by
 using the k-nn distances of the entries. | 
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mkapp | |
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mkcop | |
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mkmax | |
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mktrees.mktab | |
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.mtree | |
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.query | Classes for performing queries (knn, range, ...) on metrical trees. | 
| de.lmu.ifi.dbs.elki.index.tree.metrical.mtreevariants.split | Splitting strategies of nodes in an M-Tree (and variants). | 
| de.lmu.ifi.dbs.elki.index.tree.query | Classes related to generic tree queries. | 
| de.lmu.ifi.dbs.elki.index.tree.spatial | Tree-based index structures for spatial indexing. | 
| de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants | R*-Tree and variants. | 
| de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.deliclu | |
| de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.query | Queries on the R-Tree family of indexes: kNN and range queries. | 
| de.lmu.ifi.dbs.elki.index.tree.spatial.rstarvariants.rstar | |
| de.lmu.ifi.dbs.elki.index.vafile | Vector Approximation File | 
| de.lmu.ifi.dbs.elki.math.dimensionsimilarity | Functions to compute the similarity of dimensions (or the interestingness of the combination). | 
| de.lmu.ifi.dbs.elki.math.linearalgebra | Linear Algebra package provides classes and computational methods for operations on matrices. | 
| de.lmu.ifi.dbs.elki.math.linearalgebra.pca | Principal Component Analysis (PCA) and Eigenvector processing. | 
| de.lmu.ifi.dbs.elki.math.spacefillingcurves | Space filling curves. | 
| de.lmu.ifi.dbs.elki.result | Result types, representation and handling | 
| de.lmu.ifi.dbs.elki.result.optics | Result classes for OPTICS. | 
| de.lmu.ifi.dbs.elki.result.outlier | Outlier result classes | 
| de.lmu.ifi.dbs.elki.result.textwriter | Text serialization (CSV, Gnuplot, Console, ...) | 
| de.lmu.ifi.dbs.elki.utilities | Utility and helper classes - commonly used data structures, output formatting, exceptions, ... | 
| de.lmu.ifi.dbs.elki.utilities.datastructures | Basic memory structures such as heaps and object hierarchies. | 
| de.lmu.ifi.dbs.elki.utilities.datastructures.arraylike | Common API for accessing objects that are "array-like", including lists, numerical vectors, database vectors and arrays. | 
| de.lmu.ifi.dbs.elki.utilities.exceptions | Exception classes and common exception messages. | 
| de.lmu.ifi.dbs.elki.utilities.scaling.outlier | Scaling of Outlier scores, that require a statistical analysis of the occurring values | 
| de.lmu.ifi.dbs.elki.visualization.gui | Package to provide a visualization GUI. | 
| de.lmu.ifi.dbs.elki.visualization.style | Style management for ELKI visualizations. | 
| de.lmu.ifi.dbs.elki.visualization.visualizers.pairsegments | Visualizers for inspecting cluster differences using pair counting segments. | 
| de.lmu.ifi.dbs.elki.visualization.visualizers.scatterplot | Visualizers based on scatterplots. | 
| de.lmu.ifi.dbs.elki.visualization.visualizers.scatterplot.outlier | Visualizers for outlier scores based on 2D projections. | 
| de.lmu.ifi.dbs.elki.visualization.visualizers.scatterplot.selection | Visualizers for object selection based on 2D projections. | 
| tutorial.clustering | Classes from the tutorial on implementing a custom k-means variation. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DoubleDBIDPair Pair of a double value and a DBID | 
| DoubleDistanceDBIDPair Pair containing a double distance a DBID. | 
| HashSetModifiableDBIDs Set-oriented implementation of a modifiable DBID collection. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DoubleDBIDPair Pair of a double value and a DBID | 
| Class and Description | 
|---|
| DBIDIter Iterator for DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DoubleDBIDPair Pair of a double value and a DBID | 
| Class and Description | 
|---|
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| HashSetModifiableDBIDs Set-oriented implementation of a modifiable DBID collection. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DBIDVar (Persistent) variable storing a DBID reference. | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DBIDVar (Persistent) variable storing a DBID reference. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| ArrayStaticDBIDs Unmodifiable, indexed DBIDs. | 
| DBID Database ID object. | 
| DBIDArrayIter Array iterators that can also go backwards and seek. | 
| DBIDArrayMIter Modifiable array iterator. | 
| DBIDFactory Factory interface for generating DBIDs. | 
| DBIDIter Iterator for DBIDs. | 
| DBIDMIter Modifiable DBID iterator. | 
| DBIDPair Immutable pair of two DBIDs. | 
| DBIDRange Static DBID range. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DBIDVar (Persistent) variable storing a DBID reference. | 
| DistanceDBIDPair Pair containing a distance an an object ID
 
 Note: there is no getter for the object, as this is a  DBIDRef. | 
| DoubleDBIDPair Pair of a double value and a DBID | 
| DoubleDistanceDBIDPair Pair containing a double distance a DBID. | 
| EmptyDBIDs Empty DBID collection. | 
| EmptyDBIDs.EmptyDBIDIterator Iterator for empty DBIDs- | 
| HashSetDBIDs Hash-organized DBIDs | 
| HashSetModifiableDBIDs Set-oriented implementation of a modifiable DBID collection. | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| SetDBIDs Interface for DBIDs that support fast "set" operations, in particular
 "contains" lookups. | 
| StaticDBIDs Unmodifiable DBIDs. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| ArrayStaticDBIDs Unmodifiable, indexed DBIDs. | 
| DBID Database ID object. | 
| DBIDArrayIter Array iterators that can also go backwards and seek. | 
| DBIDIter Iterator for DBIDs. | 
| DBIDMIter Modifiable DBID iterator. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DBIDVar (Persistent) variable storing a DBID reference. | 
| StaticDBIDs Unmodifiable DBIDs. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| ArrayStaticDBIDs Unmodifiable, indexed DBIDs. | 
| DBID Database ID object. | 
| DBIDArrayIter Array iterators that can also go backwards and seek. | 
| DBIDArrayMIter Modifiable array iterator. | 
| DBIDFactory Factory interface for generating DBIDs. | 
| DBIDIter Iterator for DBIDs. | 
| DBIDMIter Modifiable DBID iterator. | 
| DBIDPair Immutable pair of two DBIDs. | 
| DBIDRange Static DBID range. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DBIDVar (Persistent) variable storing a DBID reference. | 
| DistanceDBIDPair Pair containing a distance an an object ID
 
 Note: there is no getter for the object, as this is a  DBIDRef. | 
| DoubleDBIDPair Pair of a double value and a DBID | 
| DoubleDistanceDBIDPair Pair containing a double distance a DBID. | 
| HashSetDBIDs Hash-organized DBIDs | 
| HashSetModifiableDBIDs Set-oriented implementation of a modifiable DBID collection. | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| SetDBIDs Interface for DBIDs that support fast "set" operations, in particular
 "contains" lookups. | 
| StaticDBIDs Unmodifiable DBIDs. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDIter Iterator for DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| StaticDBIDs Unmodifiable DBIDs. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDPair Immutable pair of two DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDIter Iterator for DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DistanceDBIDPair Pair containing a distance an an object ID
 
 Note: there is no getter for the object, as this is a  DBIDRef. | 
| DoubleDistanceDBIDPair Pair containing a double distance a DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| Class and Description | 
|---|
| DBIDs Interface for a collection of database references (IDs). | 
| SetDBIDs Interface for DBIDs that support fast "set" operations, in particular
 "contains" lookups. | 
| Class and Description | 
|---|
| DBIDIter Iterator for DBIDs. | 
| DBIDs Interface for a collection of database references (IDs). | 
| SetDBIDs Interface for DBIDs that support fast "set" operations, in particular
 "contains" lookups. | 
| Class and Description | 
|---|
| DBIDIter Iterator for DBIDs. | 
| DBIDPair Immutable pair of two DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DoubleDBIDPair Pair of a double value and a DBID | 
| SetDBIDs Interface for DBIDs that support fast "set" operations, in particular
 "contains" lookups. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBIDIter Iterator for DBIDs. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBID Database ID object. | 
| DBIDIter Iterator for DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| DistanceDBIDPair Pair containing a distance an an object ID
 
 Note: there is no getter for the object, as this is a  DBIDRef. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBIDArrayIter Array iterators that can also go backwards and seek. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBID Database ID object. | 
| DBIDIter Iterator for DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBIDIter Iterator for DBIDs. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBID Database ID object. | 
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| DBID Database ID object. | 
| Class and Description | 
|---|
| DBID Database ID object. | 
| Class and Description | 
|---|
| ArrayDBIDs Interface for array based DBIDs. | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| Class and Description | 
|---|
| DBIDIter Iterator for DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| DBIDIter Iterator for DBIDs. | 
| DBIDRef Some object referencing a  DBID. | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDRef Some object referencing a  DBID. | 
| Class and Description | 
|---|
| DBIDs Interface for a collection of database references (IDs). | 
| Class and Description | 
|---|
| ArrayModifiableDBIDs Array-oriented implementation of a modifiable DBID collection. | 
| DBIDRef Some object referencing a  DBID. | 
| DBIDs Interface for a collection of database references (IDs). | 
| ModifiableDBIDs Interface for a generic modifiable DBID collection. |