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