Class GenericCacheEntry

  • All Implemented Interfaces:
    java.io.Serializable

    final class GenericCacheEntry
    extends java.lang.Object
    implements java.io.Serializable
    A structure used to store values in a GenericCache. It is declared with default access to limit it to use only within the package.
    Since:
    1.0
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) int _index
      The cache array index of the entry.
      (package private) java.lang.Object _key
      The key used to store the value.
      (package private) java.lang.Object _value
      The value stored at this entry.
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      GenericCacheEntry​(int index)  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • _index

        int _index
        The cache array index of the entry.
      • _value

        java.lang.Object _value
        The value stored at this entry.
      • _key

        java.lang.Object _key
        The key used to store the value.
    • Constructor Detail

      • GenericCacheEntry

        GenericCacheEntry​(int index)