Package me.datafox.dfxengine.values
Class DelegatedValueMap
java.lang.Object
me.datafox.dfxengine.values.DelegatedValueMap
An implementation of
ValueMap
that can be backed with any implementation of HandleMap
. Includes a
DelegatedValueMap.Builder
for easy instantiation.-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionDelegatedValueMap
(HandleMap<Value> map, boolean immutable, org.slf4j.Logger logger) -
Method Summary
Modifier and TypeMethodDescriptionboolean
addModifier
(Modifier modifier) boolean
addModifiers
(Collection<? extends Modifier> modifiers) void
apply
(DualParameterOperation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral parameter1, Numeral parameter2) void
apply
(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) void
apply
(Operation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral... parameters) void
void
apply
(Operation operation, MathContext context, Numeral... parameters) void
apply
(SingleParameterOperation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral parameter) void
apply
(SingleParameterOperation operation, MapMathContext context, Map<? extends Handle, Numeral> parameters) void
apply
(SingleParameterOperation operation, MathContext context, Numeral parameter) void
apply
(SourceOperation operation, MapMathContext context, Collection<? extends Handle> handles) void
apply
(SourceOperation operation, MathContext context) static DelegatedValueMap.Builder
void
clear()
Removes all of theValues
from this map.boolean
compare
(Comparison comparison, ComparisonContext context, Numeral other) boolean
compare
(Comparison comparison, MapComparisonContext context, Collection<? extends Handle> handles, Numeral other) boolean
compare
(Comparison comparison, MapComparisonContext context, Map<? extends Handle, Numeral> others) boolean
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.boolean
containsModifier
(Modifier modifier) boolean
containsModifiers
(Collection<? extends Modifier> modifiers) boolean
containsValue
(Object value) void
convert
(Collection<? extends Handle> handles, NumeralType type) void
convert
(Map<? extends Handle, NumeralType> types) void
convert
(NumeralType type) void
convertAllowed
(NumeralType type) Only convertsValues
of this map that can be converted to the specified type.entrySet()
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, Value 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.boolean
isEmpty()
boolean
keySet()
This method ignores the key parameter, it is recommended to useputHandled(Value)
instead.void
Copies all of the mappings from the specified map to this map.putHandled
(Value value) Associates aValue
in this map.putIfAbsent
(Handle key, Value 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.boolean
removeModifier
(Modifier modifier) boolean
removeModifiers
(Collection<? extends Modifier> modifiers) void
void
set
(MapMathContext context, Collection<? extends Handle> handles, Numeral value) void
set
(MapMathContext context, Map<? extends Handle, Numeral> values) int
size()
void
Converts allValues
to the smallest decimal type that can hold its represented value.void
Converts allValues
to the smallest integer type that can hold its represented value.void
Converts allValues
to the smallest type that can hold its represented value.void
toSmallestType
(Collection<? extends Handle> handles) Converts specifiedValues
to the smallest type that can hold its represented value.toString()
Returns an unmodifiable version of this map.values()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, hashCode, merge, replace, replace, replaceAll
-
Constructor Details
-
Method Details
-
isImmutable
public boolean isImmutable()- Specified by:
isImmutable
in interfaceValueMap
- Returns:
true
if this map is for immutableValues
-
convert
- Specified by:
convert
in interfaceValueMap
- Parameters:
type
-NumeralType
for theValues
to be converted to- Throws:
ExtendedArithmeticException
- if any of theValues
in this map cannot be converted to the specified typeNullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happenUnsupportedOperationException
- if this map is for immutableValues
-
convert
- Specified by:
convert
in interfaceValueMap
- Parameters:
handles
-Handles
of theValues
to be convertedtype
-NumeralType
for theValues
to be converted to- Throws:
ExtendedArithmeticException
- if any of the specified values in this map cannot be converted to the specified typeNullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happenUnsupportedOperationException
- if this map is for immutableValues
-
convert
- Specified by:
convert
in interfaceValueMap
- Parameters:
types
- map ofHandles
andNumeralTypes
for theValues
represented by those Handles to be converted to.- Throws:
ExtendedArithmeticException
- if any of the specified values in this map cannot be converted to the specified typeNullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happenUnsupportedOperationException
- if this map is for immutableValues
-
convertAllowed
Only convertsValues
of this map that can be converted to the specified type. In other words, callsNumeral.convertIfAllowed(NumeralType)
on every Value of this map. If this map is for immutable Values, this method does nothing.- Specified by:
convertAllowed
in interfaceValueMap
- Parameters:
type
-NumeralType
for theValues
to be converted to- Throws:
NullPointerException
- if the specified type isnull
IllegalArgumentException
- if the specified type is notnull
, but it is not recognised as any of the elements ofNumeralType
. This should never happen
-
toInteger
public void toInteger()Converts allValues
to the smallest integer type that can hold its represented value. Values that are already integers are not converted.- Specified by:
toInteger
in interfaceValueMap
- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
toDecimal
public void toDecimal()Converts allValues
to the smallest decimal type that can hold its represented value. Values that are already decimals are not converted.- Specified by:
toDecimal
in interfaceValueMap
- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
toSmallestType
public void toSmallestType()Converts allValues
to the smallest type that can hold its represented value. Will not convert between integer and decimal representations. If this map is for immutable Values, this method does nothing.- Specified by:
toSmallestType
in interfaceValueMap
-
toSmallestType
Converts specifiedValues
to the smallest type that can hold its represented value. Will not convert between integer and decimal representations.Handles
that are not a part of this map's associatedSpace
are ignored. If this map is for immutable Values, this method does nothing.- Specified by:
toSmallestType
in interfaceValueMap
- Parameters:
handles
-Handles
of the values to be converted
-
set
-
set
- Specified by:
set
in interfaceValueMap
- Parameters:
context
-MapMathContext
for this operationhandles
-Handles
of the values to be changedvalue
-Numeral
for specifiedValues
of this map to be set to- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
set
- Specified by:
set
in interfaceValueMap
- Parameters:
context
-MapMathContext
for this operationvalues
- map ofHandles
to be changed andNumerals
for the specifiedValues
to be set to- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
- Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-SourceOperation
to be applied to allValues
of this mapcontext
-MathContext
for the operation- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
public void apply(SourceOperation operation, MapMathContext context, Collection<? extends Handle> handles) - Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-SourceOperation
to be applied to specifiedValues
of this mapcontext
-MapMathContext
for the operationhandles
-Handles
of theValues
to be modified- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
- Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-SingleParameterOperation
to be applied to allValues
of this mapcontext
-MathContext
for the operationparameter
- parameter for the operation- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
public void apply(SingleParameterOperation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral parameter) - Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-SingleParameterOperation
to be applied to specifiedValues
of this mapcontext
-MapMathContext
for the operationhandles
-Handles
of theValues
to be modifiedparameter
- parameter for the operation- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
public void apply(SingleParameterOperation operation, MapMathContext context, Map<? extends Handle, Numeral> parameters) - Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-SingleParameterOperation
to be applied to specifiedValues
of this mapcontext
-MapMathContext
for the operationparameters
- map ofHandles
of theValues
to be modified andNumerals
to be used as parameters for the operation- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
public void apply(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) - Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-DualParameterOperation
to be applied to allValues
of this mapcontext
-MathContext
for the operationparameter1
- first parameter for the operationparameter2
- second parameter for the operation- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
public void apply(DualParameterOperation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral parameter1, Numeral parameter2) - Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-DualParameterOperation
to be applied to specifiedValues
of this mapcontext
-MapMathContext
for the operationhandles
-Handles
of theValues
to be modifiedparameter1
- first parameter for the operationparameter2
- second parameter for the operation- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
- Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-Operation
to be applied to allValues
of this mapcontext
-MathContext
for the operationparameters
- parameters for the operation- Throws:
IllegalArgumentException
- if the amount of parameters is not equal toOperation.getParameterCount()
UnsupportedOperationException
- if this map is for immutableValues
-
apply
public void apply(Operation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral... parameters) - Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-Operation
to be applied to allValues
of this mapcontext
-MathContext
for the operationhandles
-Handles
of theValues
to be modifiedparameters
- parameters for the operation- Throws:
IllegalArgumentException
- if the amount of parameters is not equal toOperation.getParameterCount()
UnsupportedOperationException
- if this map is for immutableValues
-
apply
public void apply(Operation operation, MapMathContext context, Map<? extends Handle, Numeral[]> parameters) - Specified by:
apply
in interfaceValueMap
- Parameters:
operation
-Operation
to be applied to allValues
of this mapcontext
-MathContext
for the operationparameters
- map ofHandles
of theValues
to be modified andNumerals
to be used as parameters for the operation- Throws:
IllegalArgumentException
- if the amount of parameters is not equal toOperation.getParameterCount()
UnsupportedOperationException
- if this map is for immutableValues
-
compare
- Specified by:
compare
in interfaceValueMap
- Parameters:
comparison
-Comparison
to be usedcontext
-ComparisonContext
for the comparisonother
-Numeral
to be compared to- Returns:
true
if theComparison
returnstrue
for allValues
of this map
-
compare
public boolean compare(Comparison comparison, MapComparisonContext context, Collection<? extends Handle> handles, Numeral other) - Specified by:
compare
in interfaceValueMap
- Parameters:
comparison
-Comparison
to be usedcontext
-MapComparisonContext
for the comparisonhandles
-Handles
of theValues
to be comparedother
-Numeral
to be compared to- Returns:
true
if theComparison
returnstrue
for allValues
of this map represented by the specified keys
-
compare
public boolean compare(Comparison comparison, MapComparisonContext context, Map<? extends Handle, Numeral> others) - Specified by:
compare
in interfaceValueMap
- Parameters:
comparison
-Comparison
to be usedcontext
-MapComparisonContext
for the comparisonothers
- map ofHandles
of theValues
to be compared andNumerals
to be compared to- Returns:
true
if theComparison
returnstrue
for allValues
of this map represented by the specified keys
-
getBaseNumeralMap
- Specified by:
getBaseNumeralMap
in interfaceValueMap
- Returns:
Map
containing all entries of this map, but with the return value ofValue.getBase()
as the map values. The returned map does not have any state and instead provides a view to this map
-
getValueNumeralMap
- Specified by:
getValueNumeralMap
in interfaceValueMap
- Returns:
Map
containing all entries of this map, but with the return value ofValue.getValue()
as the map values. The returned map does not have any state and instead provides a view to this map
-
getModifiers
- Specified by:
getModifiers
in interfaceValueMap
- Returns:
Modifiers
associated with this map
-
addModifier
Modifiers
added to this map will be added to allValues
of this map, including ones that are added to this map after this operation. To add a modifier to a single value, useValue.addModifier(Modifier)
instead.- Specified by:
addModifier
in interfaceValueMap
- Parameters:
modifier
-Modifier
to be added- Returns:
true
if theModifiers
of this map changed as a result of this operation
-
addModifiers
Modifiers
added to this map will be added to allValues
of this map, including ones that are added to this map after this operation. To add modifiers to a single value, useValue.addModifiers(Collection)
} instead.- Specified by:
addModifiers
in interfaceValueMap
- Parameters:
modifiers
-Modifiers
to be added- Returns:
true
if theModifiers
of this map changed as a result of this operation
-
removeModifier
- Specified by:
removeModifier
in interfaceValueMap
- Parameters:
modifier
-Modifier
to be removed- Returns:
true
if theModifiers
of this map changed as a result of this operation
-
removeModifiers
- Specified by:
removeModifiers
in interfaceValueMap
- Parameters:
modifiers
-Modifiers
to be removed- Returns:
true
if theModifiers
of this map changed as a result of this operation
-
containsModifier
- Specified by:
containsModifier
in interfaceValueMap
- Parameters:
modifier
-Modifier
to be checked for- Returns:
true
if the specifiedModifier
is associated with this map
-
containsModifiers
- Specified by:
containsModifiers
in interfaceValueMap
- Parameters:
modifiers
-Modifiers
to be checked for- Returns:
true
if all of the specifiedModifiers
are associated with this map
-
getSpace
-
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<Value>
- 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 aValue
in this map. If the map previously contained a mapping for theHandle
, the old Value is replaced.- Specified by:
putHandled
in interfaceHandleMap<Value>
- Parameters:
value
-Value
to be associated in this map with its associatedHandle
as a key- Returns:
- the previously associated
Value
in this map, ornull
if there was no previous association - Throws:
IllegalArgumentException
- if theValue
is static, ifValue.isImmutable()
is not the same asisImmutable()
or if the associatedHandle
is not contained in theSpace
associated with this map
-
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<Value>
- 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<Value>
- 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<Value>
- 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
-
size
public int size() -
isEmpty
public boolean isEmpty() -
containsKey
Description copied from interface:HandleMap
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<Value>
- Specified by:
containsKey
in interfaceMap<Handle,
Value> - Parameters:
key
- key whose presence in this map is to be tested- Returns:
true
if this map contains a mapping for the specified key
-
containsValue
- Specified by:
containsValue
in interfaceMap<Handle,
Value> - Parameters:
value
- value whose presence in this map is to be tested- Returns:
true
if this map maps one or more keys to the specified value
-
get
Description copied from interface:HandleMap
-
put
This method ignores the key parameter, it is recommended to useputHandled(Value)
instead.- Specified by:
put
in interfaceHandleMap<Value>
- Specified by:
put
in interfaceMap<Handle,
Value> - Parameters:
key
- ignored parametervalue
-Value
to be associated with this map- Returns:
- previously associated
Value
in this map, ornull
if there was no previous association - Throws:
IllegalArgumentException
- if theValue
is static, ifValue.isImmutable()
is not the same asisImmutable()
or if the associatedHandle
is not contained in theSpace
associated with this map
-
remove
Description copied from interface:HandleMap
-
putAll
Description copied from interface:HandleMap
Copies all of the mappings from the specified map to this map. The effect of this call is equivalent to that of callingHandleMap.put(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
. -
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<Value>
- Specified by:
getOrDefault
in interfaceMap<Handle,
Value> - 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 an inappropriate type for this mapNullPointerException
- 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<Value>
- Specified by:
putIfAbsent
in interfaceMap<Handle,
Value> - 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 mapClassCastException
- if the key or value is of an inappropriate type for 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<Value>
- Specified by:
remove
in interfaceMap<Handle,
Value> - 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 or value is of an inappropriate type for this mapNullPointerException
- if the specified key or value isnull
-
clear
public void clear()Removes all of theValues
from this map. -
keySet
-
values
-
entrySet
-
toString
-
builder
- Parameters:
space
-Space
to be associated with theDelegatedValueMap.Builder
- Returns:
DelegatedValueMap.Builder
with the specifiedSpace
-