Package elki.database.datastore
Interface DBIDDataStore
-
- All Known Subinterfaces:
WritableDBIDDataStore
- All Known Implementing Classes:
ArrayDBIDStore,MapIntegerDBIDDBIDStore
public interface DBIDDataStore extends DataStore<DBID>
DBID-valued data store (avoids boxing/unboxing).- Since:
- 0.5.5
- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description DBIDVarassignVar(DBIDRef id, DBIDVar var)Retrieves an object from the storage.DBIDget(DBIDRef id)Deprecated.UseassignVar(elki.database.ids.DBIDRef, elki.database.ids.DBIDVar)and aDBIDVarinstead, to avoid boxing/unboxing cost.
-
-
-
Method Detail
-
get
@Deprecated DBID get(DBIDRef id)
Deprecated.UseassignVar(elki.database.ids.DBIDRef, elki.database.ids.DBIDVar)and aDBIDVarinstead, to avoid boxing/unboxing cost.Getter, but using objects.
-
-