
public interface WritableDoubleDistanceDataStore extends DoubleDistanceDataStore, WritableDataStore<DoubleDistance>
| Modifier and Type | Method and Description |
|---|---|
double |
put(DBIDRef id,
double value)
Associates the specified value with the specified id in this storage.
|
DoubleDistance |
put(DBIDRef id,
DoubleDistance value)
Deprecated.
Use
putDouble(de.lmu.ifi.dbs.elki.database.ids.DBIDRef, double) instead, to avoid boxing/unboxing cost. |
double |
putDouble(DBIDRef id,
double value)
Associates the specified value with the specified id in this storage.
|
doubleValue, getdelete, destroygetLongName, getShortName@Deprecated DoubleDistance put(DBIDRef id, DoubleDistance value)
putDouble(de.lmu.ifi.dbs.elki.database.ids.DBIDRef, double) instead, to avoid boxing/unboxing cost.put in interface WritableDataStore<DoubleDistance>id - Database ID.value - Value to store.double putDouble(DBIDRef id, double value)
id - Database ID.value - Value to store.double put(DBIDRef id, double value)
id - Database ID.value - Value to store.