Package 

Interface StorageCollection


  • 
    public interface StorageCollection<T extends Identifiable>
    
                        

    A generic collection of values that can be stored and retrieved from persistent storage.

    • Method Summary

      Modifier and Type Method Description
      abstract T get(String key) Returns the value associated with the specified key, or null if the key is not in the storage layer.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • get

         abstract T get(String key)

        Returns the value associated with the specified key, or null if the key is not in the storage layer.

        ai.cheq.sst.android.core.Sst.configure must be called once before this method is called.

        Parameters:
        key - The key to get.