Package me.datafox.dfxengine.values.api
Interface ValueMap
- All Known Implementing Classes:
DelegatedValueMap
-
Nested Class Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addModifier
(Modifier modifier) boolean
addModifiers
(Collection<? extends Modifier> modifiers) default void
apply
(DualParameterOperation operation, Collection<? extends Handle> handles, Numeral parameter1, Numeral parameter2) default void
apply
(DualParameterOperation operation, Numeral parameter1, Numeral parameter2) UsesMathContext.defaults()
for context.void
apply
(DualParameterOperation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral parameter1, Numeral parameter2) void
apply
(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) default void
apply
(Operation operation, Collection<? extends Handle> handles, Numeral... parameters) default void
default void
UsesMathContext.defaults()
for context.void
apply
(Operation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral... parameters) void
void
apply
(Operation operation, MathContext context, Numeral... parameters) default void
apply
(SingleParameterOperation operation, Collection<? extends Handle> handles, Numeral parameter) default void
apply
(SingleParameterOperation operation, Map<? extends Handle, Numeral> parameters) default void
apply
(SingleParameterOperation operation, Numeral parameter) UsesMathContext.defaults()
for context.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) default void
apply
(SourceOperation operation) UsesMathContext.defaults()
for context.default void
apply
(SourceOperation operation, Collection<? extends Handle> handles) void
apply
(SourceOperation operation, MapMathContext context, Collection<? extends Handle> handles) void
apply
(SourceOperation operation, MathContext context) default boolean
compare
(Comparison comparison, Collection<? extends Handle> handles, Numeral other) UsesMapComparisonContext.defaults()
for context.default boolean
compare
(Comparison comparison, Map<? extends Handle, Numeral> others) UsesMapComparisonContext.defaults()
for context.default boolean
compare
(Comparison comparison, Numeral other) UsesComparisonContext.defaults()
for context.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
containsModifier
(Modifier modifier) boolean
containsModifiers
(Collection<? extends Modifier> modifiers) 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.boolean
boolean
removeModifier
(Modifier modifier) boolean
removeModifiers
(Collection<? extends Modifier> modifiers) default void
set
(Collection<? extends Handle> handles, Numeral value) default void
void
void
set
(MapMathContext context, Collection<? extends Handle> handles, Numeral value) void
set
(MapMathContext context, Map<? extends Handle, Numeral> values) 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.Methods inherited from interface me.datafox.dfxengine.handles.api.HandleMap
containsKey, containsKeys, get, getByTag, getByTags, getOrDefault, getSpace, put, putAll, putHandled, putIfAbsent, remove, remove, unmodifiable
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
-
isImmutable
boolean isImmutable()- Returns:
true
if this map is for immutableValues
-
convert
- 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
- 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
- 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.- 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
void toInteger()Converts allValues
to the smallest integer type that can hold its represented value. Values that are already integers are not converted.- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
toDecimal
void toDecimal()Converts allValues
to the smallest decimal type that can hold its represented value. Values that are already decimals are not converted.- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
toSmallestType
void toSmallestType()Converts allValues
to the smallest type that can hold its represented value. Will not convert between integer and decimal representations. -
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.- Parameters:
handles
-Handles
of the values to be converted
-
set
- Parameters:
value
-Numeral
for allValues
of this map to be set to- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
set
- 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
- 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
- Parameters:
operation
-SourceOperation
to be applied to allValues
of this mapcontext
-MathContext
for the operation- Throws:
UnsupportedOperationException
- if this map is for immutableValues
-
apply
- 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
- 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
void apply(SingleParameterOperation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral parameter) - 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
void apply(SingleParameterOperation operation, MapMathContext context, Map<? extends Handle, Numeral> parameters) - 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
void apply(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) - 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
void apply(DualParameterOperation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral parameter1, Numeral parameter2) - 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
- 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
void apply(Operation operation, MapMathContext context, Collection<? extends Handle> handles, Numeral... parameters) - 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
- 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
- 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
boolean compare(Comparison comparison, MapComparisonContext context, Collection<? extends Handle> handles, Numeral other) - 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
boolean compare(Comparison comparison, MapComparisonContext context, Map<? extends Handle, Numeral> others) - 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
- 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
- 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
Collection<Modifier> getModifiers()- 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. -
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. -
removeModifier
-
removeModifiers
-
containsModifier
-
containsModifiers
-
set
Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context. -
set
Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context. -
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-SourceOperation
to be applied to allValues
of this map
-
apply
Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context.- Parameters:
operation
-SourceOperation
to be applied to specifiedValues
of this maphandles
-Handles
of theValues
to be modified
-
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-SingleParameterOperation
to be applied to allValues
of this mapparameter
- parameter for the operation
-
apply
default void apply(SingleParameterOperation operation, Collection<? extends Handle> handles, Numeral parameter) Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context.- Parameters:
operation
-SingleParameterOperation
to be applied to specifiedValues
of this maphandles
-Handles
of theValues
to be modifiedparameter
- parameter for the operation
-
apply
Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context.- Parameters:
operation
-SingleParameterOperation
to be applied to specifiedValues
of this mapparameters
- map ofHandles
of theValues
to be modified andNumerals
to be used as parameters for the operation
-
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-DualParameterOperation
to be applied to allValues
of this mapparameter1
- first parameter for the operationparameter2
- second parameter for the operation
-
apply
default void apply(DualParameterOperation operation, Collection<? extends Handle> handles, Numeral parameter1, Numeral parameter2) Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context.- Parameters:
operation
-DualParameterOperation
to be applied to specifiedValues
of this maphandles
-Handles
of theValues
to be modifiedparameter1
- first parameter for the operationparameter2
- second parameter for the operation
-
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-Operation
to be applied to allValues
of this mapparameters
- parameters for the operation- Throws:
IllegalArgumentException
- if the amount of parameters is not equal toOperation.getParameterCount()
-
apply
default void apply(Operation operation, Collection<? extends Handle> handles, Numeral... parameters) Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context.- Parameters:
operation
-Operation
to be applied to allValues
of this maphandles
-Handles
of theValues
to be modifiedparameters
- parameters for the operation- Throws:
IllegalArgumentException
- if the amount of parameters is not equal toOperation.getParameterCount()
-
apply
Handles
that are not a part of this map's associatedSpace
are ignored. UsesMapMathContext.defaults()
for context.- Parameters:
operation
-Operation
to be applied to allValues
of this mapparameters
- 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()
-
compare
UsesComparisonContext.defaults()
for context.- Parameters:
comparison
-Comparison
to be usedother
-Numeral
to be compared to- Returns:
true
if theComparison
returnstrue
for allValues
of this map
-
compare
UsesMapComparisonContext.defaults()
for context.- Parameters:
comparison
-Comparison
to be usedhandles
-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
UsesMapComparisonContext.defaults()
for context.- Parameters:
comparison
-Comparison
to be usedothers
- 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
-