gate.util
Class HashMapLong.Entry

java.lang.Object
  |
  +--gate.util.HashMapLong.Entry
Enclosing class:
HashMapLong

private static class HashMapLong.Entry
extends Object

HashMapLong collision list entry.


Field Summary
(package private)  int hash
           
(package private)  long key
           
(package private)  HashMapLong.Entry next
           
(package private)  Object value
           
 
Constructor Summary
(package private) HashMapLong.Entry(int hash, long key, Object value, HashMapLong.Entry next)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hash

int hash

key

long key

value

Object value

next

HashMapLong.Entry next
Constructor Detail

HashMapLong.Entry

HashMapLong.Entry(int hash,
                  long key,
                  Object value,
                  HashMapLong.Entry next)