it.unimi.dsi.fastutil.ints
Interface Int2FloatMap.Entry

All Superinterfaces:
Map.Entry<Integer,Float>
All Known Implementing Classes:
AbstractInt2FloatMap.BasicEntry, Int2FloatMaps.Singleton.SingletonEntry
Enclosing interface:
Int2FloatMap

public static interface Int2FloatMap.Entry
extends Map.Entry<Integer,Float>

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

See Also:
Map.Entry

Method Summary
 float getFloatValue()
           
 int getIntKey()
           
 float setValue(float value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getIntKey

int getIntKey()
See Also:
Map.Entry.getKey()

setValue

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

getFloatValue

float getFloatValue()
See Also:
Map.Entry.getValue()


Copyright © 2011. All Rights Reserved.