| Package | Description |
|---|---|
| com.google.api.client.util.store |
Utilities to store serializable data.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDataStore<V extends Serializable
Abstract data store implementation.
|
| Modifier and Type | Method and Description |
|---|---|
DataStore |
DataStore.clear()
Deletes all of the stored keys and values.
|
protected <V extends Serializable |
MemoryDataStoreFactory.createDataStore(String
|
protected abstract <V extends Serializable |
AbstractDataStoreFactory.createDataStore(String
Returns a new instance of a type-specific data store based on the given unique ID.
|
protected <V extends Serializable |
FileDataStoreFactory.createDataStore(String
|
DataStore |
DataStore.delete(String
Deletes the stored key and value based on the given key, or ignored if the key doesn't already exist.
|
<V extends Serializable |
DataStoreFactory.getDataStore(String
Returns a type-specific data store based on the given unique ID.
|
<V extends Serializable |
AbstractDataStoreFactory.getDataStore(String
|
DataStore |
DataStore.set(String
Stores the given value for the given key (replacing any existing value).
|
| Modifier and Type | Method and Description |
|---|---|
static String |
DataStoreUtils.toString(DataStore
Returns a debug string for the given data store to be used as an implementation of
Object.
|