com.jogamp.common.util
Class LongIntHashMap.Entry

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

public static final class LongIntHashMap.Entry
extends Object

An entry mapping a key to a value.


Field Summary
 long key
           
 int value
           
 
Method Summary
 long getKey()
          Returns the key of this entry.
 int getValue()
          Returns the value of this entry.
 void setValue(int 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 long key

value

public int value
Method Detail

getKey

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


getValue

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


setValue

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


toString

public String toString()
Overrides:
toString in class Object