Package 

Class DiskLruCache.Snapshot

  • 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.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.
      InputStream getInputStream(int index) Returns the unbuffered stream with the value for {@code index}.
      String getString(int index) Returns the string value for {@code index}.
      long getLength(int index) Returns the byte length of the value for {@code index}.
      void close()
      • Methods inherited from class java.io.Closeable

        close
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.

      • getString

         String getString(int index)

        Returns the string value for {@code index}.

      • getLength

         long getLength(int index)

        Returns the byte length of the value for {@code index}.