it.unimi.dsi.fastutil.longs
Interface Long2BooleanMap

All Superinterfaces:
Function<Long,Boolean>, Long2BooleanFunction, Map<Long,Boolean>
All Known Subinterfaces:
Long2BooleanSortedMap
All Known Implementing Classes:
AbstractLong2BooleanMap, AbstractLong2BooleanSortedMap, Long2BooleanArrayMap, Long2BooleanAVLTreeMap, Long2BooleanLinkedOpenHashMap, Long2BooleanMaps.EmptyMap, Long2BooleanMaps.Singleton, Long2BooleanMaps.SynchronizedMap, Long2BooleanMaps.UnmodifiableMap, Long2BooleanOpenHashMap, Long2BooleanRBTreeMap, Long2BooleanSortedMaps.EmptySortedMap, Long2BooleanSortedMaps.Singleton, Long2BooleanSortedMaps.SynchronizedSortedMap, Long2BooleanSortedMaps.UnmodifiableSortedMap

public interface Long2BooleanMap
extends Long2BooleanFunction, Map<Long,Boolean>

A type-specific 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 Long2BooleanMap.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).

See Also:
Map

Nested Class Summary
static interface Long2BooleanMap.Entry
          A type-specific Map.Entry; provides some additional methods that use polymorphism to avoid (un)boxing.
static interface Long2BooleanMap.FastEntrySet
          An entry set providing fast iteration.
 
Method Summary
 boolean containsValue(boolean value)
           
 ObjectSet<Map.Entry<Long,Boolean>> entrySet()
          Returns a set view of the mappings contained in this map.
 LongSet keySet()
          Returns a set view of the keys contained in this map.
 ObjectSet<Long2BooleanMap.Entry> long2BooleanEntrySet()
          Returns a type-specific set view of the mappings contained in this map.
 BooleanCollection values()
          Returns a set view of the values contained in this map.
 
Methods inherited from interface it.unimi.dsi.fastutil.longs.Long2BooleanFunction
containsKey, defaultReturnValue, defaultReturnValue, get, put, remove
 
Methods inherited from interface it.unimi.dsi.fastutil.Function
clear, containsKey, get, put, remove, size
 
Methods inherited from interface java.util.Map
clear, containsKey, containsValue, equals, get, hashCode, isEmpty, put, putAll, remove, size
 

Method Detail

entrySet

ObjectSet<Map.Entry<Long,Boolean>> entrySet()
Returns a set view of the mappings contained in this map.

Note that this specification strengthens the one given in Map.entrySet().

Specified by:
entrySet in interface Map<Long,Boolean>
Returns:
a set view of the mappings contained in this map.
See Also:
Map.entrySet()

long2BooleanEntrySet

ObjectSet<Long2BooleanMap.Entry> long2BooleanEntrySet()
Returns a type-specific set view of the mappings contained in this map.

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 objects of type Long2BooleanMap.Entry (the latter makes it possible to access keys and values with type-specific methods).

Returns:
a type-specific set view of the mappings contained in this map.
See Also:
entrySet()

keySet

LongSet keySet()
Returns a set view of the keys contained in this map.

Note that this specification strengthens the one given in Map.keySet().

Specified by:
keySet in interface Map<Long,Boolean>
Returns:
a set view of the keys contained in this map.
See Also:
Map.keySet()

values

BooleanCollection values()
Returns a set view of the values contained in this map.

Note that this specification strengthens the one given in Map.values().

Specified by:
values in interface Map<Long,Boolean>
Returns:
a set view of the values contained in this map.
See Also:
Map.values()

containsValue

boolean containsValue(boolean value)
See Also:
Map.containsValue(Object)


Copyright © 2011. All Rights Reserved.