Interface Value
- All Superinterfaces:
Comparable<Handled>
,Dependency
,Dependent
,Handled
- All Known Implementing Classes:
MappingOperationModifier.SpecialValue
,StaticValue
,ValueImpl
A mutable numeric value identified by a Handle
and backed with a Numeral
that supports dynamic
Modifiers
. Each value contains a base Numeral that can be changed with
convert(NumeralType)
, convertIfAllowed(NumeralType)
, toInteger()
, toDecimal()
,
set(Numeral)
, apply(Operation, MathContext, Numeral...)
and other apply(...)
methods. Each
value also contains a value Numeral, which represents the base Numeral with all the Modifiers applied to it. This
Numeral should be lazily calculated when getValue()
is called, but only when the base Numeral or any of the
Modifiers have changed. It is recommended for the implementation to extend DependencyDependent
to simplify
invalidating the cached value.
Values can be immutable. The base Numeral of an immutable value can not be changed, but immutable values can still
have Modifiers. Calling convert(NumeralType)
, toInteger()
, toDecimal()
,
set(Numeral)
or any of the apply(...)
methods should throw UnsupportedOperationException
,
and calling convertIfAllowed(NumeralType)
or toSmallestType()
should return false
with no
other action.
Values can also be considered static. A static value should be immutable, unmodifiable and not identified by a
Handle. In addition to the rules for immutable values, getHandle()
should return null
and all
Modifier-related methods should return false
with no other action.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
addModifier
(Modifier modifier) boolean
addModifiers
(Collection<? extends Modifier> modifiers) default void
apply
(DualParameterOperation operation, Numeral parameter1, Numeral parameter2) UsesMathContext.defaults()
for context.void
apply
(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) default void
UsesMathContext.defaults()
for context.void
apply
(Operation operation, MathContext context, Numeral... parameters) default void
apply
(SingleParameterOperation operation, Numeral parameter) UsesMathContext.defaults()
for context.void
apply
(SingleParameterOperation operation, MathContext context, Numeral parameter) default void
apply
(SourceOperation operation) UsesMathContext.defaults()
for context.void
apply
(SourceOperation operation, MathContext context) boolean
canConvert
(NumeralType type) default boolean
compare
(Comparison comparison, Numeral other) UsesComparisonContext.defaults()
for context.boolean
compare
(Comparison comparison, ComparisonContext context, Numeral other) boolean
containsModifier
(Modifier modifier) boolean
containsModifiers
(Collection<? extends Modifier> modifiers) boolean
convert
(NumeralType type) boolean
convertIfAllowed
(NumeralType type) getBase()
getValue()
boolean
Static values are always immutable.boolean
isStatic()
boolean
removeModifier
(Modifier modifier) boolean
removeModifiers
(Collection<? extends Modifier> modifiers) void
boolean
If the baseNumeral
does not represent a decimal value (NumeralType.isDecimal()
isfalse
forNumeral.getType()
), converts it to the smallest decimal type that hold the represented value.boolean
If the baseNumeral
does not represent an integer value (NumeralType.isInteger()
isfalse
forNumeral.getType()
), converts it to the smallest integer type that hold the represented value.boolean
Converts the baseNumeral
to the smallest type that can hold its represented value.Methods inherited from interface me.datafox.dfxengine.dependencies.Dependency
addDependent, addDependents, containsDependent, containsDependentRecursive, containsDependents, containsDependentsRecursive, dependentStream, getDependents, invalidateDependents, recursiveDependentStream, removeDependent, removeDependents
Methods inherited from interface me.datafox.dfxengine.dependencies.Dependent
invalidate
-
Method Details
-
getHandle
Handle getHandle() -
getBase
Numeral getBase()- Returns:
- base
Numeral
of this value
-
getValue
Numeral getValue() -
isStatic
boolean isStatic()- Returns:
true
if this value is static
-
isImmutable
boolean isImmutable()Static values are always immutable.- Returns:
true
if this value is immutable
-
canConvert
- Parameters:
type
-NumeralType
to be checked for- Returns:
true
if the baseNumeral
of this value can be converted to the specified type- 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
-
convert
- Parameters:
type
-NumeralType
for the baseNumeral
of this value to be converted to- Returns:
true
if the baseNumeral
of this value was changed as a result of this operation- Throws:
ExtendedArithmeticException
- if the baseNumeral
of this value is outside the specified type's boundsNullPointerException
- 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 value is immutable
-
convertIfAllowed
- Parameters:
type
-NumeralType
for the baseNumeral
of this value to be converted to- Returns:
true
if the baseNumeral
of this value was changed as a result of this operation- 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
boolean toInteger()If the baseNumeral
does not represent an integer value (NumeralType.isInteger()
isfalse
forNumeral.getType()
), converts it to the smallest integer type that hold the represented value.- Returns:
true
if the baseNumeral
was changed as a result of this operation- Throws:
UnsupportedOperationException
- if this value is immutable
-
toDecimal
boolean toDecimal()If the baseNumeral
does not represent a decimal value (NumeralType.isDecimal()
isfalse
forNumeral.getType()
), converts it to the smallest decimal type that hold the represented value.- Returns:
true
if the baseNumeral
was changed as a result of this operation- Throws:
UnsupportedOperationException
- if this value is immutable
-
toSmallestType
boolean toSmallestType()Converts the baseNumeral
to the smallest type that can hold its represented value. Will not convert between integer and decimal representations.- Returns:
true
if the baseNumeral
was changed as a result of this operation
-
set
- Parameters:
value
- value to replace the current baseNumeral
- Throws:
UnsupportedOperationException
- if this value is immutable
-
apply
- Parameters:
operation
-SourceOperation
to be applied to the baseNumeral
context
-MathContext
for the operation- Throws:
UnsupportedOperationException
- if this value is immutable
-
apply
- Parameters:
operation
-SingleParameterOperation
to be applied to the baseNumeral
context
-MathContext
for the operationparameter
- parameter for the operation- Throws:
UnsupportedOperationException
- if this value is immutable
-
apply
void apply(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) - Parameters:
operation
-DualParameterOperation
to be applied to the baseNumeral
context
-MathContext
for the operationparameter1
- first parameter for the operationparameter2
- second parameter for the operation- Throws:
UnsupportedOperationException
- if this value is static
-
apply
- Parameters:
operation
-Operation
to be applied to the baseNumeral
context
-MathContext
for the operationparameters
- parameters for the operation- Throws:
IllegalArgumentException
- if the amount of parameters is not equal toOperation.getParameterCount()
UnsupportedOperationException
- if this value is immutable
-
compare
- Parameters:
comparison
-Comparison
to be usedcontext
-ComparisonContext
for the comparisonother
-Numeral
to be compared with- Returns:
true
if the specifiedComparison
returnstrue
-
getModifiers
Collection<Modifier> getModifiers()- Returns:
Modifiers
associated with this value
-
addModifier
-
addModifiers
-
removeModifier
-
removeModifiers
-
containsModifier
-
containsModifiers
-
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-SourceOperation
to be applied to the baseNumeral
- Throws:
UnsupportedOperationException
- if this value is static
-
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-SingleParameterOperation
to be applied to the baseNumeral
parameter
- parameter for the operation- Throws:
UnsupportedOperationException
- if this value is static
-
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-DualParameterOperation
to be applied to the baseNumeral
parameter1
- first parameter for the operationparameter2
- second parameter for the operation- Throws:
UnsupportedOperationException
- if this value is static
-
apply
UsesMathContext.defaults()
for context.- Parameters:
operation
-Operation
to be applied to the baseNumeral
parameters
- parameters for the operation- Throws:
IllegalArgumentException
- if the amount of parameters is not equal toOperation.getParameterCount()
UnsupportedOperationException
- if this value is static
-
compare
UsesComparisonContext.defaults()
for context.- Parameters:
comparison
-Comparison
to be usedother
-Numeral
to be compared with- Returns:
true
if the specifiedComparison
returnstrue
-