Package com.google.api.client.util.store
Class DataStoreUtils
- java.lang.Object
-
- com.google.api.client.util.store.DataStoreUtils
-
public final class DataStoreUtils extends java.lang.ObjectUtilities for data stores.- Since:
- 1.16
-
-
Constructor Summary
Constructors Modifier Constructor Description privateDataStoreUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringtoString(DataStore<?> dataStore)Returns a debug string for the given data store to be used as an implementation ofObject.toString().
-
-
-
Method Detail
-
toString
public static java.lang.String toString(DataStore<?> dataStore)
Returns a debug string for the given data store to be used as an implementation ofObject.toString().Implementation iterates over
DataStore.keySet(), callingDataStore.get(String)on each key.- Parameters:
dataStore- data store- Returns:
- debug string
-
-