Package me.datafox.dfxengine.handles
Class HashHandleMap<T>
- Type Parameters:
T
- the type of mapped values
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<Handle,
,T> HandleMap<T>
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K,
V>, AbstractMap.SimpleImmutableEntry<K, V> -
Constructor Summary
ConstructorsConstructorDescriptionHashHandleMap
(Space space) UsesLoggerFactory.getLogger(Class)
withHashHandleMap.class
.HashHandleMap
(Space space, org.slf4j.Logger logger) -
Method Summary
Modifier and TypeMethodDescriptionboolean
containsKey
(Object key) Returnstrue
if this map contains a mapping for the specified key.boolean
containsKeys
(Collection<?> keys) Returnstrue
if this map contains a mapping for all the specified keys.Returns the value to which the specified key is mapped, ornull
if none is present.Returns all values mapped to keys containing the specified tag.getByTags
(Collection<?> tags) Returns all values mapped to keys containing the specified tag.getOrDefault
(Object key, T defaultValue) Returnstrue
if this map contains a mapping for the specified key, or the specified default value if none is present.Associates the specified value with the specified key in this map.void
Copies all of the mappings from the specified map to this map.putHandled
(T value) putIfAbsent
(Handle key, T value) Associates the specified key with the specified value and returnsnull
if the specified key is not already associated with a value, otherwise returns the current value.Removes the mapping for a key from this map if it is present.boolean
Removes the entry for the specified key only if it is currently mapped to the specified value.Returns an unmodifiable version of this map.Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsValue, entrySet, forEach, isEmpty, keySet, merge, newHashMap, replace, replace, replaceAll, size, values
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsValue, entrySet, equals, forEach, hashCode, isEmpty, keySet, merge, replace, replace, replaceAll, size, values
-
Constructor Details
-
HashHandleMap
- Parameters:
space
-Space
to be associated with this maplogger
-Logger
for this map
-
HashHandleMap
UsesLoggerFactory.getLogger(Class)
withHashHandleMap.class
.- Parameters:
space
-Space
to be associated with this map
-
-
Method Details
-
containsKeys
Returnstrue
if this map contains a mapping for all the specified keys. The keys may either beHandles
or theirString
ids.- Specified by:
containsKeys
in interfaceHandleMap<T>
- Parameters:
keys
-Handle
keys or theirString
ids whose presence in this map is to be tested- Returns:
true
if this map contains a mapping for all the specified keys- Throws:
ClassCastException
- if any of the keys are of an inappropriate type for this mapNullPointerException
- if any of the keys isnull
-
putHandled
Associates aHandled
value with its associatedHandle
. If the map previously contained a mapping for the key, the old value is replaced by the specified value. TheHandle
key must be present in this map's associatedSpace
.- Specified by:
putHandled
in interfaceHandleMap<T>
- Parameters:
value
-Handled
value to be associated with its associatedHandle
key- Returns:
- the previous value associated with the key, or
null
if none was present - Throws:
UnsupportedOperationException
- if theput
operation is not supported by this mapClassCastException
- if the value does not implementHandled
NullPointerException
- if the specified value isnull
IllegalArgumentException
- if the value's associatedHandle
is not present in this map's associatedSpace
-
unmodifiable
Returns an unmodifiable version of this map. All changes made to the original map will be reflected in the returned one.- Specified by:
unmodifiable
in interfaceHandleMap<T>
- Returns:
- unmodifiable version of this map
-
getByTag
Returns all values mapped to keys containing the specified tag. The tag may be aHandle
or itsString
id.- Specified by:
getByTag
in interfaceHandleMap<T>
- Parameters:
tag
- tagHandle
or itsString
id- Returns:
- all values mapped to keys containing the specified tag
- Throws:
ClassCastException
- if the tag is not aHandle
or aString
NullPointerException
- if the tag isnull
IllegalArgumentException
- if theHandle
is not a tag
-
getByTags
Returns all values mapped to keys containing the specified tag. The tags may beHandles
or theirString
ids.- Specified by:
getByTags
in interfaceHandleMap<T>
- Parameters:
tags
- tagHandles
or theirString
ids- Returns:
- all values mapped to keys containing the specified tags
- Throws:
ClassCastException
- if any of the tags are notHandles
or aStrings
NullPointerException
- if any of the tags isnull
IllegalArgumentException
- if any of theHandles
is not a tag
-
containsKey
Returnstrue
if this map contains a mapping for the specified key. The key may either be aHandle
or itsString
id.- Specified by:
containsKey
in interfaceHandleMap<T>
- Specified by:
containsKey
in interfaceMap<Handle,
T> - Overrides:
containsKey
in classHashMap<Handle,
T> - Parameters:
key
-Handle
key or itsString
id whose presence in this map is to be tested- Returns:
true
if this map contains a mapping for the specified key- Throws:
ClassCastException
- if the key is of an inappropriate type for this mapNullPointerException
- if the specified key isnull
-
get
Returns the value to which the specified key is mapped, ornull
if none is present. The key may either be aHandle
or itsString
id.- Specified by:
get
in interfaceHandleMap<T>
- Specified by:
get
in interfaceMap<Handle,
T> - Overrides:
get
in classHashMap<Handle,
T> - Parameters:
key
-Handle
key or itsString
id whose associated value is to be returned- Returns:
- the value to which the specified key is mapped, or
null
if none is present - Throws:
ClassCastException
- if the key is of not aHandle
or aString
NullPointerException
- if the specified key isnull
-
put
Associates the specified value with the specified key in this map. If the map previously contained a mapping for the key, the old value is replaced by the specified value. TheHandle
key must be present in this map's associatedSpace
.- Specified by:
put
in interfaceHandleMap<T>
- Specified by:
put
in interfaceMap<Handle,
T> - Overrides:
put
in classHashMap<Handle,
T> - Parameters:
key
-Handle
key with which the specified value is to be associated withvalue
- value to be associated with the specified key- Returns:
- the previous value associated with the key, or
null
if none was present - Throws:
UnsupportedOperationException
- if theput
operation is not supported by this mapNullPointerException
- if the specified key or value isnull
IllegalArgumentException
- if theHandle
key is not present in this map's associatedSpace
-
remove
Removes the mapping for a key from this map if it is present. Returns the value to which this map previously associated the key, ornull
if the map contained no mapping for the key. The key may either be aHandle
or itsString
id.- Specified by:
remove
in interfaceHandleMap<T>
- Specified by:
remove
in interfaceMap<Handle,
T> - Overrides:
remove
in classHashMap<Handle,
T> - Parameters:
key
-Handle
key or itsString
id whose mapping is to be removed from this map- Returns:
- the previous value associated with
key
, ornull
if none was present - Throws:
UnsupportedOperationException
- if theremove
operation is not supported by this mapClassCastException
- if the key is of not aHandle
or aString
NullPointerException
- if the specified key isnull
-
putAll
Copies all of the mappings from the specified map to this map. The effect of this call is equivalent to that of callingput(Handle, Object)
on this map once for each mapping from key to value in the specified map. AllHandle
keys must be present in this map's associatedSpace
.- Specified by:
putAll
in interfaceHandleMap<T>
- Specified by:
putAll
in interfaceMap<Handle,
T> - Overrides:
putAll
in classHashMap<Handle,
T> - Parameters:
map
- mappings to be stored in this map- Throws:
UnsupportedOperationException
- if theputAll
operation is not supported by this mapNullPointerException
- if the specified map isnull
or containsnull
keys or valuesIllegalArgumentException
- if the specified map contains aHandle
key that is not present in this map's associatedSpace
-
getOrDefault
Returnstrue
if this map contains a mapping for the specified key, or the specified default value if none is present. The key may either be aHandle
or itsString
id.- Specified by:
getOrDefault
in interfaceHandleMap<T>
- Specified by:
getOrDefault
in interfaceMap<Handle,
T> - Overrides:
getOrDefault
in classHashMap<Handle,
T> - Parameters:
key
-Handle
key or itsString
id whose associated value is to be returneddefaultValue
- the default mapping of the key- Returns:
- the value to which the specified key is mapped, or the specified default value if this map contains no mapping for the key
- Throws:
ClassCastException
- if the key is of not aHandle
or aString
NullPointerException
- if the specified key isnull
-
putIfAbsent
Associates the specified key with the specified value and returnsnull
if the specified key is not already associated with a value, otherwise returns the current value.- Specified by:
putIfAbsent
in interfaceHandleMap<T>
- Specified by:
putIfAbsent
in interfaceMap<Handle,
T> - Overrides:
putIfAbsent
in classHashMap<Handle,
T> - Parameters:
key
-Handle
key with which the specified value is to be associated withvalue
- value to be associated with the specified key- Returns:
- the previous value associated with the specified key, or
null
if there was no mapping for the key - Throws:
UnsupportedOperationException
- if theput
operation is not supported by this mapNullPointerException
- if the specified key or value isnull
IllegalArgumentException
- if theHandle
key is not present in this map's associatedSpace
-
remove
Removes the entry for the specified key only if it is currently mapped to the specified value. The key may either be aHandle
or itsString
id.- Specified by:
remove
in interfaceHandleMap<T>
- Specified by:
remove
in interfaceMap<Handle,
T> - Overrides:
remove
in classHashMap<Handle,
T> - Parameters:
key
-Handle
key or itsString
id with which the specified value is associatedvalue
- value expected to be associated with the specified key- Returns:
true
if the value was removed- Throws:
UnsupportedOperationException
- if theremove
operation is not supported by this mapClassCastException
- if the key is of not aHandle
or aString
NullPointerException
- if the specified key or value isnull
-