com.vladium.util
Class IntIntMap.Entry

java.lang.Object
  extended bycom.vladium.util.IntIntMap.Entry
Enclosing class:
IntIntMap

private static final class IntIntMap.Entry
extends java.lang.Object

The structure used for chaining colliding keys.


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

Field Detail

m_key

int m_key

m_value

int m_value

m_next

IntIntMap.Entry m_next
Constructor Detail

IntIntMap.Entry

IntIntMap.Entry(int key,
                int value,
                IntIntMap.Entry next)