jasi.sim.basic.table
Class ConditionMap.Entry

java.lang.Object
  extended by jasi.sim.basic.table.ConditionMap.Entry
All Implemented Interfaces:
java.util.Map.Entry<K,V>
Enclosing class:
ConditionMap<K,V>

public final class ConditionMap.Entry
extends java.lang.Object
implements java.util.Map.Entry<K,V>

Entry in a condition map.


Method Summary
 K getKey()
           
 V getValue()
           
 V setValue(V value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Map.Entry
equals, hashCode
 

Method Detail

getKey

public K getKey()
Specified by:
getKey in interface java.util.Map.Entry<K,V>
Returns:
The key of the entry.
See Also:
Map.Entry.getKey()

getValue

public V getValue()
Specified by:
getValue in interface java.util.Map.Entry<K,V>
Returns:
The value of the entry.
See Also:
Map.Entry.getValue()

setValue

public V setValue(V value)
Specified by:
setValue in interface java.util.Map.Entry<K,V>
Parameters:
value - The new value.
Returns:
The value.
See Also:
Map.Entry.setValue(Object)