Package me.datafox.dfxengine.handles.api
Interface HandleMap<T>
- Type Parameters:
T
- the type of mapped values
- All Known Subinterfaces:
ValueMap
- All Known Implementing Classes:
DelegatedValueMap
,HashHandleMap
,TreeHandleMap
-
Nested Class Summary
-
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.getSpace()
Returns theSpace
associated with this map.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 interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsValue, entrySet, equals, forEach, hashCode, isEmpty, keySet, merge, replace, replace, replaceAll, size, values
-
Method Details
-
getSpace
Space getSpace()Returns theSpace
associated with this map. AllHandle
keys present in this map must be associated with this space.- Returns:
Space
associated with this map
-
containsKeys
Returnstrue
if this map contains a mapping for all the specified keys. The keys may either beHandles
or theirString
ids.- 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
.- 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.- 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.- 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.- 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 interfaceMap<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 interfaceMap<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 interfaceMap<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 interfaceMap<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 interfaceMap<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 interfaceMap<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 interfaceMap<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 interfaceMap<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
-