Function<java.lang.Integer,java.lang.Boolean>, Int2BooleanFunction, java.util.Map<java.lang.Integer,java.lang.Boolean>AbstractInt2BooleanMap, Int2BooleanArrayMappublic interface Int2BooleanMap extends Int2BooleanFunction, java.util.Map<java.lang.Integer,java.lang.Boolean>
Map; provides some additional methods that use
polymorphism to avoid (un)boxing, and handling of a default return value.
Besides extending the corresponding type-specific
function, this interface
strengthens entrySet(), keySet() and values().
Maps returning entry sets of type Int2BooleanMap.FastEntrySet support also fast
iteration.
A submap or subset may or may not have an independent default return value (which however must be initialized to the default return value of the originator).
Map| Modifier and Type | Interface | Description |
|---|---|---|
static interface |
Int2BooleanMap.Entry |
A type-specific
Map.Entry; provides some additional
methods that use polymorphism to avoid (un)boxing. |
static interface |
Int2BooleanMap.FastEntrySet |
An entry set providing fast iteration.
|
| Modifier and Type | Method | Description |
|---|---|---|
boolean |
containsValue(boolean value) |
|
ObjectSet<java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>> |
entrySet() |
Returns a set view of the mappings contained in this map.
|
ObjectSet<Int2BooleanMap.Entry> |
int2BooleanEntrySet() |
Returns a type-specific set view of the mappings contained in this map.
|
IntSet |
keySet() |
Returns a set view of the keys contained in this map.
|
BooleanCollection |
values() |
Returns a set view of the values contained in this map.
|
clear, containsKey, get, put, remove, sizecontainsKey, defaultReturnValue, defaultReturnValue, get, put, removeObjectSet<java.util.Map.Entry<java.lang.Integer,java.lang.Boolean>> entrySet()
Note that this specification strengthens the one given in
Map.entrySet().
entrySet in interface java.util.Map<java.lang.Integer,java.lang.Boolean>Map.entrySet()ObjectSet<Int2BooleanMap.Entry> int2BooleanEntrySet()
This method is necessary because there is no inheritance along type
parameters: it is thus impossible to strengthen entrySet() so
that it returns an ObjectSet of
type-specific entries (the latter makes it possible to access keys and
values with type-specific methods).
entrySet()IntSet keySet()
Note that this specification strengthens the one given in
Map.keySet().
keySet in interface java.util.Map<java.lang.Integer,java.lang.Boolean>Map.keySet()BooleanCollection values()
Note that this specification strengthens the one given in
Map.values().
values in interface java.util.Map<java.lang.Integer,java.lang.Boolean>Map.values()boolean containsValue(boolean value)
Map.containsValue(Object)