
public interface WritableIntegerDataStore extends IntegerDataStore, WritableDataStore<Integer>
| Modifier and Type | Method and Description | 
|---|---|
| int | put(DBIDRef id,
   int value)Associates the specified value with the specified id in this storage. | 
| Integer | put(DBIDRef id,
   Integer value)Deprecated. 
 Use  putInt(de.lmu.ifi.dbs.elki.database.ids.DBIDRef, int)instead, to avoid boxing/unboxing cost. | 
| int | putInt(DBIDRef id,
      int value)Associates the specified value with the specified id in this storage. | 
get, intValuedelete, destroygetLongName, getShortName@Deprecated Integer put(DBIDRef id, Integer value)
putInt(de.lmu.ifi.dbs.elki.database.ids.DBIDRef, int) instead, to avoid boxing/unboxing cost.put in interface WritableDataStore<Integer>id - Database ID.value - Value to store.int putInt(DBIDRef id, int value)
id - Database ID.value - Value to store.int put(DBIDRef id, int value)
id - Database ID.value - Value to store.