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

All Superinterfaces:
Map.Entry<Integer,Boolean>
All Known Implementing Classes:
AbstractInt2BooleanMap.BasicEntry
Enclosing interface:
Int2BooleanMap

public static interface Int2BooleanMap.Entry
extends Map.Entry<Integer,Boolean>

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

See Also:
Map.Entry

Method Summary
 boolean getBooleanValue()
           
 int getIntKey()
           
 boolean setValue(boolean 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

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

getBooleanValue

boolean getBooleanValue()
See Also:
Map.Entry.getValue()