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
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()