Class DoublyIndexedTable.Entry

java.lang.Object
org.apache.batik.util.DoublyIndexedTable.Entry
Enclosing class:
DoublyIndexedTable

public static class DoublyIndexedTable.Entry extends Object
An entry in the DoublyIndexedTable.
  • Field Details

    • hash

      protected int hash
      The hash code.
    • key1

      protected Object key1
      The first key.
    • key2

      protected Object key2
      The second key.
    • value

      protected Object value
      The value.
    • next

      protected DoublyIndexedTable.Entry next
      The next entry.
  • Constructor Details

  • Method Details

    • getKey1

      public Object getKey1()
      Returns this entry's first key.
    • getKey2

      public Object getKey2()
      Returns this entry's second key.
    • getValue

      public Object getValue()
      Returns this entry's value.
    • match

      protected boolean match(Object o1, Object o2)
      Whether this entry match the given keys.