com.jogamp.common.util
Class IntLongHashMap.Entry

java.lang.Object
  extended by com.jogamp.common.util.IntLongHashMap.Entry
Enclosing class:
IntLongHashMap

public static final class IntLongHashMap.Entry
extends Object

An entry mapping a key to a value.


Field Summary
 int key
           
 long value
           
 
Method Summary
 int getKey()
          Returns the key of this entry.
 long getValue()
          Returns the value of this entry.
 void setValue(long value)
          Sets the value for this entry.
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

key

public final int key

value

public long value
Method Detail

getKey

public int getKey()
Returns the key of this entry.


getValue

public long getValue()
Returns the value of this entry.


setValue

public void setValue(long value)
Sets the value for this entry.


toString

public String toString()
Overrides:
toString in class Object