it.unimi.dsi.fastutil.doubles
Interface Double2CharMap.Entry

All Superinterfaces:
Map.Entry<Double,Character>
All Known Implementing Classes:
AbstractDouble2CharMap.BasicEntry
Enclosing interface:
Double2CharMap

public static interface Double2CharMap.Entry
extends Map.Entry<Double,Character>

A type-specific Map.Entry; provides some additional methods that use polymorphism to avoid (un)boxing.

See Also:
Map.Entry

Method Summary
 char getCharValue()
           
 double getDoubleKey()
           
 char setValue(char value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getDoubleKey

double getDoubleKey()
See Also:
Map.Entry.getKey()

setValue

char setValue(char value)
See Also:
Map.Entry.setValue(Object)

getCharValue

char getCharValue()
See Also:
Map.Entry.getValue()