Class IntTable.Entry

java.lang.Object
org.apache.batik.dom.util.IntTable.Entry
All Implemented Interfaces:
Serializable
Enclosing class:
IntTable

protected static class IntTable.Entry extends Object implements Serializable
To manage collisions.
See Also:
  • Field Details

    • hash

      public int hash
      The hash code.
    • key

      public Object key
      The key.
    • value

      public int value
      The value.
    • next

      public IntTable.Entry next
      The next entry
  • Constructor Details

    • Entry

      public Entry(int hash, Object key, int value, IntTable.Entry next)
      Creates a new Entry object.