org.apache.batik.dom.util
public static class DoublyIndexedTable.Entry extends Object
Field Summary | |
---|---|
protected int | hash
The hash code. |
protected Object | key1
The first key. |
protected Object | key2
The second key. |
protected DoublyIndexedTable.Entry | next
The next entry. |
protected Object | value
The value. |
Constructor Summary | |
---|---|
Entry(int hash, Object key1, Object key2, Object value, DoublyIndexedTable.Entry next)
Creates a new entry. |
Method Summary | |
---|---|
Object | getKey1()
Returns this entry's first key. |
Object | getKey2()
Returns this entry's second key. |
Object | getValue()
Returns this entry's value. |
protected boolean | match(Object o1, Object o2)
Whether this entry match the given keys. |