Package elki.index
Interface Index
-
- All Known Subinterfaces:
DistanceIndex<O>,DistancePriorityIndex<O>,DynamicIndex,KNNIndex<O>,RangeIndex<O>,RKNNIndex<O>,SharedNearestNeighborIndex<O>,SimilarityIndex<O>,SimilarityRangeIndex<O>
- All Known Implementing Classes:
AbstractCoverTree,AbstractMaterializeKNNPreprocessor,AbstractMkTree,AbstractMkTreeUnified,AbstractMTree,AbstractRefiningIndex,AbstractRStarTree,CachedDoubleDistanceKNNPreprocessor,CoverTree,DeLiCluTree,DeLiCluTreeIndex,FlatRStarTree,FlatRStarTreeIndex,GNAT,IndexTree,InMemoryIDistanceIndex,InMemoryInvertedIndex,InMemoryLSHIndex.Instance,KNNJoinMaterializeKNNPreprocessor,LAESA,LatLngAsECEFIndex,LngLatAsECEFIndex,MaterializeKNNAndRKNNPreprocessor,MaterializeKNNPreprocessor,MemoryKDTree,MetricalIndexApproximationMaterializeKNNPreprocessor,MetricalIndexTree,MinimalisticMemoryKDTree,MkAppTree,MkAppTreeIndex,MkCoPTree,MkCoPTreeIndex,MkMaxTree,MkMaxTreeIndex,MkTabTree,MkTabTreeIndex,MTree,MTreeIndex,NaiveProjectedKNNPreprocessor,NNDescent,NonFlatRStarTree,PartialVAFile,PartitionApproximationMaterializeKNNPreprocessor,PrecomputedDistanceMatrix,PrecomputedSimilarityMatrix,ProjectedIndex,RandomSampleKNNPreprocessor,RdKNNTree,RStarTree,RStarTreeIndex,SharedNearestNeighborPreprocessor,SimplifiedCoverTree,SmallMemoryKDTree,SpacefillingKNNPreprocessor,SpacefillingMaterializeKNNPreprocessor,SpatialApproximationMaterializeKNNPreprocessor,VAFile,VPTree
public interface IndexInterface defining the minimum requirements for all index classes.See also:
IndexFactory,DynamicIndex- Since:
- 0.1
- Author:
- Elke Achtert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidinitialize()Initialize the index.default voidlogStatistics()Send statistics to the logger, if enabled.
-
-
-
Method Detail
-
initialize
void initialize()
Initialize the index. For static indexes, this is the moment the index is bulk loaded.
-
logStatistics
default void logStatistics()
Send statistics to the logger, if enabled.Note: you must have set the logging level appropriately before initializing the index! Otherwise, the index might not have collected the desired statistics.
-
-