
T - Data typepublic interface WritableDataStore<T> extends DataStore<T>
| Modifier and Type | Method and Description | 
|---|---|
| void | delete(DBIDRef id)Delete the contents for a particular ID and notifies the registered
 listeners. | 
| void | destroy()Deallocate the storage, freeing the memory and notifies the registered
 listeners. | 
| T | put(DBIDRef id,
   T value)Associates the specified value with the specified id in this storage. | 
getLongName, getShortNameT put(DBIDRef id, T value)
id - Database ID.value - Value to store.void destroy()
void delete(DBIDRef id)
id - Database ID.