Class EmptyHashMap<K,V>
java.lang.Object
org.javimmutable.collections.common.AbstractMap<K,V>
org.javimmutable.collections.hash.EmptyHashMap<K,V>
- All Implemented Interfaces:
Serializable
,Iterable<IMapEntry<K,
,V>> ICollection<IMapEntry<K,
,V>> IMap<K,
,V> InvariantCheckable
,IStreamable<IMapEntry<K,
,V>> Mapped<K,
,V> SplitableIterable<IMapEntry<K,
V>>
Singleton implementation of
is created that
manages hash collisions using a tree if key is Comparable or a list otherwise.
IMap
that contains no elements.
When a value is assigned to the map a
invalid reference
IHashMap
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionSets the value associated with a specific key.void
Checks invariants of implementing class.Deletes the entry for the specified key (if any).Search for a value within the map and return a Holder indicating if the value was found and, if it was found, the value itself.Search for an Entry within the map and return a Holder indicating if the Entry was found and, if it was found, the Entry itself.int
getValueOr
(K key, V defaultValue) Return the value associated with key or defaultValue if no value is associated.iterator()
Overridden here to require implementations to return a SplitableIterator rather than a basic Iterator.Creates a Builder with the same type signature as this Map.int
size()
Methods inherited from class org.javimmutable.collections.common.AbstractMap
assignAll, assignAll, equals, get, getMap, hashCode, insert, keys, reject, select, toString, values
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.javimmutable.collections.ICollection
isEmpty, isNonEmpty
Methods inherited from interface org.javimmutable.collections.IMap
forEach, forEachThrows, insertAll, insertAll, mapCollector, reduce, reduceThrows, update
Methods inherited from interface org.javimmutable.collections.IStreamable
parallelStream, spliterator, stream
Methods inherited from interface org.javimmutable.collections.SplitableIterable
forEachThrows, indexedForEach, indexedForEachThrows, reduce, reduceThrows
-
Method Details
-
mapBuilder
Description copied from interface:IMap
Creates a Builder with the same type signature as this Map.- Specified by:
mapBuilder
in interfaceIMap<K,
V>
-
find
Description copied from interface:IMap
Search for a value within the map and return a Holder indicating if the value was found and, if it was found, the value itself. Holder allows null values to be returned unambiguously. -
findEntry
Description copied from interface:IMap
Search for an Entry within the map and return a Holder indicating if the Entry was found and, if it was found, the Entry itself. -
assign
Description copied from interface:IMap
Sets the value associated with a specific key. Key must be non-null but value can be null. If the key already has a value in the map the old value is discarded and the new value is stored in its place. Returns a newIMap
reflecting any changes. The original map is always left unchanged. -
delete
Description copied from interface:IMap
Deletes the entry for the specified key (if any). Returns a new map if the value was deleted or the current map if the key was not contained in the map. -
size
public int size()- Specified by:
size
in interfaceICollection<K>
- Returns:
- number of values in the collection
-
deleteAll
-
iterator
Description copied from interface:IStreamable
Overridden here to require implementations to return a SplitableIterator rather than a basic Iterator. This is necessary to allow composition of new objects from methods like keys() and values().- Specified by:
iterator
in interfaceIStreamable<K>
- Specified by:
iterator
in interfaceIterable<K>
- Specified by:
iterator
in interfaceSplitableIterable<K>
-
getSpliteratorCharacteristics
public int getSpliteratorCharacteristics()- Specified by:
getSpliteratorCharacteristics
in interfaceIStreamable<K>
- Overrides:
getSpliteratorCharacteristics
in classAbstractMap<K,
V> - Returns:
- characteristics value used when creating Spliterators
-
getValueOr
Description copied from interface:Mapped
Return the value associated with key or defaultValue if no value is associated. Note that if defaultValue is an acceptable value to the container then this method will be ambiguous and find() should be used instead.- Specified by:
getValueOr
in interfaceMapped<K,
V> - Parameters:
key
- identifies the value to retrievedefaultValue
- value to return if no entry exists for key- Returns:
- value associated with key or defaultValue if no value is associated
-
checkInvariants
public void checkInvariants()Description copied from interface:InvariantCheckable
Checks invariants of implementing class.- Specified by:
checkInvariants
in interfaceInvariantCheckable
-