public class

SimpleCacheKey

extends Object
implements CacheKey
java.lang.Object
   ↳ com.facebook.cache.common.SimpleCacheKey
Known Direct Subclasses

Class Overview

CacheKey implementation that is a simple wrapper around a String object.

Users of CacheKey should construct it by providing a unique string that unambiguously identifies the cached resource.

Summary

Public Constructors
SimpleCacheKey(String key)
SimpleCacheKey(String key, boolean isResourceIdForDebugging)
Public Methods
boolean containsUri(Uri uri)
Returns true if this key was constructed from this Uri.
boolean equals(Object o)
String getUriString()
Returns a string representation of the URI at the heart of the cache key.
int hashCode()
boolean isResourceIdForDebugging()
Returns true if this key was constructed from a resource ID.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.facebook.cache.common.CacheKey

Public Constructors

public SimpleCacheKey (String key)

public SimpleCacheKey (String key, boolean isResourceIdForDebugging)

Public Methods

public boolean containsUri (Uri uri)

Returns true if this key was constructed from this Uri.

Used for cases like deleting all keys for a given uri.

public boolean equals (Object o)

public String getUriString ()

Returns a string representation of the URI at the heart of the cache key. In cases of multiple keys being contained, the first is returned.

public int hashCode ()

public boolean isResourceIdForDebugging ()

Returns true if this key was constructed from a resource ID. If this ever changes, the disk cache entries corresponding to this cache key would be invalidated.

public String toString ()