Uses of Class
com.android.volley.Cache.Entry

Packages that use Cache.Entry
com.android.volley   
com.android.volley.toolbox   
 

Uses of Cache.Entry in com.android.volley
 

Fields in com.android.volley declared as Cache.Entry
 Cache.Entry Response.cacheEntry
          Cache metadata for this response, or null in the case of error.
 

Methods in com.android.volley that return Cache.Entry
 Cache.Entry Cache.get(String key)
          Retrieves an entry from the cache.
 Cache.Entry Request.getCacheEntry()
          Returns the annotated cache entry, or null if there isn't one.
 

Methods in com.android.volley with parameters of type Cache.Entry
 void Cache.put(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.
 

Uses of Cache.Entry in com.android.volley.toolbox
 

Methods in com.android.volley.toolbox that return Cache.Entry
 Cache.Entry NoCache.get(String key)
           
 Cache.Entry DiskBasedCache.get(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 DiskBasedCache.CacheHeader.toCacheEntry(byte[] data)
          Creates a cache entry for the specified data.
 

Methods in com.android.volley.toolbox with parameters of type Cache.Entry
 void NoCache.put(String key, Cache.Entry entry)
           
 void DiskBasedCache.put(String key, Cache.Entry entry)
          Puts the entry with the specified key into the cache.
 

Constructors in com.android.volley.toolbox with parameters of type Cache.Entry
DiskBasedCache.CacheHeader(String key, Cache.Entry entry)
          Instantiates a new CacheHeader object