Class ImageCacher.ImageCacheEntry

  • Enclosing class:
    ImageCacher

    private static class ImageCacher.ImageCacheEntry
    extends java.lang.Object
    Instances of this class are created to keep track of the set of images processed by the ImageHandler. Each entry corresponds to one unique member of this set.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      int checksum
      A checksum calculated for the data cached
      java.lang.String href
      A uri identifying the data
      java.lang.Object src
      An implementation-dependent object referring to the data
    • Constructor Summary

      Constructors 
      Constructor Description
      ImageCacheEntry​(int checksum, java.lang.Object src, java.lang.String href)
      Creates a new entry
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • checksum

        public int checksum
        A checksum calculated for the data cached
      • src

        public java.lang.Object src
        An implementation-dependent object referring to the data
      • href

        public java.lang.String href
        A uri identifying the data
    • Constructor Detail

      • ImageCacheEntry

        ImageCacheEntry​(int checksum,
                        java.lang.Object src,
                        java.lang.String href)
        Creates a new entry