Uses of Interface
com.google.api.client.util.store.DataStore
-
Packages that use DataStore 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. -
-
Uses of DataStore in com.google.api.client.extensions.jdo
Methods in com.google.api.client.extensions.jdo that return DataStore Modifier and Type Method Description protected <V extends Serializable>
DataStore<V>JdoDataStoreFactory. createDataStore(String id)
-
Uses of DataStore in com.google.api.client.util.store
Classes in com.google.api.client.util.store that implement DataStore Modifier and Type Class Description class
AbstractDataStore<V extends Serializable>
Abstract data store implementation.Methods in com.google.api.client.util.store that return DataStore Modifier and Type Method Description DataStore<V>
DataStore. clear()
Deletes all of the stored keys and values.protected abstract <V extends Serializable>
DataStore<V>AbstractDataStoreFactory. createDataStore(String id)
Returns a new instance of a type-specific data store based on the given unique ID.protected <V extends Serializable>
DataStore<V>FileDataStoreFactory. createDataStore(String id)
protected <V extends Serializable>
DataStore<V>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>
DataStore<V>AbstractDataStoreFactory. getDataStore(String id)
<V extends Serializable>
DataStore<V>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).Methods in com.google.api.client.util.store with parameters of type DataStore 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 ofObject.toString()
.
-