-
- All Implemented Interfaces:
-
java.io.Closeable,java.lang.AutoCloseable
public final class DiskLruCache.Snapshot implements Closeable
A snapshot of the values for an entry.
-
-
Method Summary
Modifier and Type Method Description DiskLruCache.Editoredit()Returns an editor for this snapshot's entry, or null if either theentry has changed since this snapshot was created or if another editis in progress. InputStreamgetInputStream(int index)Returns the unbuffered stream with the value for {@code index}.StringgetString(int index)Returns the string value for {@code index}.longgetLength(int index)Returns the byte length of the value for {@code index}.voidclose()-
-
Method Detail
-
edit
DiskLruCache.Editor edit()
Returns an editor for this snapshot's entry, or null if either theentry has changed since this snapshot was created or if another editis in progress.
-
getInputStream
InputStream getInputStream(int index)
Returns the unbuffered stream with the value for
{@code index}.
-
getLength
long getLength(int index)
Returns the byte length of the value for
{@code index}.
-
close
void close()
-
-
-
-