A C D E F G I N O R S U

A

abort() - Method in class com.jakewharton.disklrucache.DiskLruCache.Editor
Aborts this edit.
abortUnlessCommitted() - Method in class com.jakewharton.disklrucache.DiskLruCache.Editor
 

C

close() - Method in class com.jakewharton.disklrucache.DiskLruCache
Closes this cache.
close() - Method in class com.jakewharton.disklrucache.DiskLruCache.Snapshot
 
com.jakewharton.disklrucache - package com.jakewharton.disklrucache
 
commit() - Method in class com.jakewharton.disklrucache.DiskLruCache.Editor
Commits this edit so it is visible to readers.

D

delete() - Method in class com.jakewharton.disklrucache.DiskLruCache
Closes the cache and deletes all of its stored values.
DiskLruCache - Class in com.jakewharton.disklrucache
A cache that uses a bounded amount of space on a filesystem.
DiskLruCache.Editor - Class in com.jakewharton.disklrucache
Edits the values for an entry.
DiskLruCache.Snapshot - Class in com.jakewharton.disklrucache
A snapshot of the values for an entry.

E

edit(String) - Method in class com.jakewharton.disklrucache.DiskLruCache
Returns an editor for the entry named key, or null if another edit is in progress.
edit() - Method in class com.jakewharton.disklrucache.DiskLruCache.Snapshot
Returns an editor for this snapshot's entry, or null if either the entry has changed since this snapshot was created or if another edit is in progress.

F

flush() - Method in class com.jakewharton.disklrucache.DiskLruCache
Force buffered operations to the filesystem.

G

get(String) - Method in class com.jakewharton.disklrucache.DiskLruCache
Returns a snapshot of the entry named key, or null if it doesn't exist is not currently readable.
getDirectory() - Method in class com.jakewharton.disklrucache.DiskLruCache
Returns the directory where this cache stores its data.
getInputStream(int) - Method in class com.jakewharton.disklrucache.DiskLruCache.Snapshot
Returns the unbuffered stream with the value for index.
getLength(int) - Method in class com.jakewharton.disklrucache.DiskLruCache.Snapshot
Returns the byte length of the value for index.
getMaxSize() - Method in class com.jakewharton.disklrucache.DiskLruCache
Returns the maximum number of bytes that this cache should use to store its data.
getString(int) - Method in class com.jakewharton.disklrucache.DiskLruCache.Editor
Returns the last committed value as a string, or null if no value has been committed.
getString(int) - Method in class com.jakewharton.disklrucache.DiskLruCache.Snapshot
Returns the string value for index.

I

isClosed() - Method in class com.jakewharton.disklrucache.DiskLruCache
Returns true if this cache has been closed.

N

newInputStream(int) - Method in class com.jakewharton.disklrucache.DiskLruCache.Editor
Returns an unbuffered input stream to read the last committed value, or null if no value has been committed.
newOutputStream(int) - Method in class com.jakewharton.disklrucache.DiskLruCache.Editor
Returns a new unbuffered output stream to write the value at index.

O

open(File, int, int, long) - Static method in class com.jakewharton.disklrucache.DiskLruCache
Opens the cache in directory, creating a cache if none exists there.

R

remove(String) - Method in class com.jakewharton.disklrucache.DiskLruCache
Drops the entry for key if it exists and can be removed.

S

set(int, String) - Method in class com.jakewharton.disklrucache.DiskLruCache.Editor
Sets the value at index to value.
setMaxSize(long) - Method in class com.jakewharton.disklrucache.DiskLruCache
Changes the maximum number of bytes the cache can store and queues a job to trim the existing store, if necessary.
size() - Method in class com.jakewharton.disklrucache.DiskLruCache
Returns the number of bytes currently being used to store the values in this cache.

U

Util - Class in com.jakewharton.disklrucache
Junk drawer of utility methods.

A C D E F G I N O R S U

Copyright © 2012-2013 Jake Wharton. All Rights Reserved.