クラス
com.android.volley.Cache.Entry の使用

Cache.Entry を使用しているパッケージ
com.android.volley   
com.android.volley.toolbox   
 

com.android.volley での Cache.Entry の使用
 

Cache.Entry として宣言されている com.android.volley のフィールド
 Cache.Entry Response.cacheEntry
          Cache metadata for this response, or null in the case of error.
 

Cache.Entry を返す com.android.volley のメソッド
 Cache.Entry Cache.get(java.lang.String key)
          Retrieves an entry from the cache.
 Cache.Entry Request.getCacheEntry()
          Returns the annotated cache entry, or null if there isn't one.
 

Cache.Entry 型のパラメータを持つ com.android.volley のメソッド
 void Cache.put(java.lang.String key, Cache.Entry entry)
          Adds or replaces an entry to the cache.
 void Request.setCacheEntry(Cache.Entry entry)
          Annotates this request with an entry retrieved for it from cache.
static
<T> Response<T>
Response.success(T result, Cache.Entry cacheEntry)
          Returns a successful response containing the parsed result.
 

com.android.volley.toolbox での Cache.Entry の使用
 

Cache.Entry を返す com.android.volley.toolbox のメソッド
 Cache.Entry NoCache.get(java.lang.String key)
           
 Cache.Entry DiskBasedCache.get(java.lang.String key)
          Returns the cache entry with the specified key if it exists, null otherwise.
static Cache.Entry HttpHeaderParser.parseCacheHeaders(NetworkResponse response)
          Extracts a Cache.Entry from a NetworkResponse.
 

Cache.Entry 型のパラメータを持つ com.android.volley.toolbox のメソッド
 void NoCache.put(java.lang.String key, Cache.Entry entry)
           
 void DiskBasedCache.put(java.lang.String key, Cache.Entry entry)
          Puts the entry with the specified key into the cache.