it.unimi.dsi.fastutil.chars
Interface Char2DoubleMap.Entry

All Superinterfaces:
Map.Entry<Character,Double>
All Known Implementing Classes:
AbstractChar2DoubleMap.BasicEntry, Char2DoubleMaps.Singleton.SingletonEntry
Enclosing interface:
Char2DoubleMap

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

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

See Also:
Map.Entry

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

Method Detail

getCharKey

char getCharKey()
See Also:
Map.Entry.getKey()

setValue

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

getDoubleValue

double getDoubleValue()
See Also:
Map.Entry.getValue()


Copyright © 2011. All Rights Reserved.