Class AbstractByte2ObjectMap<V>
- All Implemented Interfaces:
Byte2ObjectFunction<V>
,Byte2ObjectMap<V>
,Function<Byte,V>
,Serializable
,Function<Byte,V>
,IntFunction<V>
,Map<Byte,V>
- Direct Known Subclasses:
AbstractByte2ObjectSortedMap
,Byte2ObjectArrayMap
,Byte2ObjectOpenCustomHashMap
,Byte2ObjectOpenHashMap
public abstract class AbstractByte2ObjectMap<V> extends AbstractByte2ObjectFunction<V> implements Byte2ObjectMap<V>, Serializable
Optional operations just throw an UnsupportedOperationException
.
Generic versions of accessors delegate to the corresponding type-specific
counterparts following the interface rules (they take care of returning
null
on a missing key).
As a further help, this class provides a BasicEntry
inner
class that implements a type-specific version of Map.Entry
;
it is particularly useful for those classes that do not implement their own
entries (e.g., most immutable maps).
- See Also:
- Serialized Form
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AbstractByte2ObjectMap.BasicEntry<V>
This class provides a basic but complete type-specific entry class for all those maps implementations that do not have entries on their own (e.g., most immutable maps).static class
AbstractByte2ObjectMap.BasicEntrySet<V>
This class provides a basic implementation for an Entry set which forwards some queries to the map.Nested classes/interfaces inherited from interface it.unimi.dsi.fastutil.bytes.Byte2ObjectMap
Byte2ObjectMap.Entry<V>, Byte2ObjectMap.FastEntrySet<V>
-
Method Summary
Modifier and Type Method Description boolean
containsKey(byte k)
Returns true if this function contains a mapping for the specified key.boolean
containsValue(Object v)
boolean
equals(Object o)
int
hashCode()
Returns a hash code for this map.boolean
isEmpty()
ByteSet
keySet()
Returns a type-specific-set view of the keys of this map.void
putAll(Map<? extends Byte,? extends V> m)
String
toString()
ObjectCollection<V>
values()
Returns a type-specific-set view of the values of this map.Methods inherited from class it.unimi.dsi.fastutil.bytes.AbstractByte2ObjectFunction
defaultReturnValue, defaultReturnValue
Methods inherited from interface it.unimi.dsi.fastutil.bytes.Byte2ObjectFunction
andThen, andThen, andThen, andThen, andThen, andThen, andThen, andThen, andThen, apply, compose, compose, compose, compose, compose, compose, compose, compose, compose, get, put, remove
Methods inherited from interface it.unimi.dsi.fastutil.bytes.Byte2ObjectMap
byte2ObjectEntrySet, clear, compute, compute, computeIfAbsent, computeIfAbsent, computeIfAbsentPartial, computeIfPresent, computeIfPresent, containsKey, defaultReturnValue, defaultReturnValue, entrySet, get, getOrDefault, getOrDefault, merge, merge, put, putIfAbsent, putIfAbsent, remove, remove, remove, replace, replace, replace, replace, size
Methods inherited from interface java.util.Map
forEach, replaceAll
-
Method Details
-
containsValue
- Specified by:
containsValue
in interfaceMap<Byte,V>
-
containsKey
public boolean containsKey(byte k)Description copied from interface:Byte2ObjectMap
Returns true if this function contains a mapping for the specified key.- Specified by:
containsKey
in interfaceByte2ObjectFunction<V>
- Specified by:
containsKey
in interfaceByte2ObjectMap<V>
- Parameters:
k
- the key.- Returns:
- true if this function associates a value to
key
. - See Also:
Map.containsKey(Object)
-
isEmpty
public boolean isEmpty() -
keySet
Returns a type-specific-set view of the keys of this map.The view is backed by the set returned by
Map.entrySet()
. Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.- Specified by:
keySet
in interfaceByte2ObjectMap<V>
- Specified by:
keySet
in interfaceMap<Byte,V>
- Returns:
- a set view of the keys of this map; it may be safely cast to a type-specific interface.
- See Also:
Map.keySet()
-
values
Returns a type-specific-set view of the values of this map.The view is backed by the set returned by
Map.entrySet()
. Note that no attempt is made at caching the result of this method, as this would require adding some attributes that lightweight implementations would not need. Subclasses may easily override this policy by calling this method and caching the result, but implementors are encouraged to write more efficient ad-hoc implementations.- Specified by:
values
in interfaceByte2ObjectMap<V>
- Specified by:
values
in interfaceMap<Byte,V>
- Returns:
- a set view of the values of this map; it may be safely cast to a type-specific interface.
- See Also:
Map.values()
-
putAll
-
hashCode
public int hashCode()Returns a hash code for this map. The hash code of a map is computed by summing the hash codes of its entries. -
equals
-
toString
-