it.unimi.dsi.fastutil.bytes
Interface Byte2IntMap.Entry

All Superinterfaces:
Map.Entry<Byte,Integer>
All Known Implementing Classes:
AbstractByte2IntMap.BasicEntry, Byte2IntMaps.Singleton.SingletonEntry
Enclosing interface:
Byte2IntMap

public static interface Byte2IntMap.Entry
extends Map.Entry<Byte,Integer>

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

See Also:
Map.Entry

Method Summary
 byte getByteKey()
           
 int getIntValue()
           
 int setValue(int value)
           
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getByteKey

byte getByteKey()
See Also:
Map.Entry.getKey()

setValue

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

getIntValue

int getIntValue()
See Also:
Map.Entry.getValue()


Copyright © 2011. All Rights Reserved.