it.unimi.dsi.fastutil.longs
Interface Long2BooleanMap.Entry

All Superinterfaces:
Map.Entry<Long,Boolean>
All Known Implementing Classes:
AbstractLong2BooleanMap.BasicEntry
Enclosing interface:
Long2BooleanMap

public static interface Long2BooleanMap.Entry
extends Map.Entry<Long,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()
           
 long getLongKey()
           
 boolean setValue(boolean value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getLongKey

long getLongKey()
See Also:
Map.Entry.getKey()

setValue

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

getBooleanValue

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