Package me.datafox.dfxengine.values
Class ValueImpl
java.lang.Object
me.datafox.dfxengine.dependencies.AbstractDependency
me.datafox.dfxengine.dependencies.DependencyDependent
me.datafox.dfxengine.values.ValueImpl
- All Implemented Interfaces:
Comparable<Handled>
,Dependency
,Dependent
,Handled
,Value
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 set(Numeral)
and
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 value is lazily
calculated when getValue()
is called, but only when the base Numeral or any of the Modifiers have changed.
These changes are tracked with Dependencies
and Dependents
.-
Field Summary
Fields inherited from class me.datafox.dfxengine.dependencies.AbstractDependency
dependents, logger
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
addModifier
(Modifier modifier) boolean
addModifiers
(Collection<? extends Modifier> modifiers) void
apply
(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) void
apply
(Operation operation, MathContext context, Numeral... parameters) void
apply
(SingleParameterOperation operation, MathContext context, Numeral parameter) void
apply
(SourceOperation operation, MathContext context) boolean
canConvert
(NumeralType type) 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()
This implementation always returnsfalse
.protected void
This method should be treated as the equivalent ofDependent.invalidate()
for classes extending DependencyDependent.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.toString()
Methods inherited from class me.datafox.dfxengine.dependencies.DependencyDependent
invalidate
Methods inherited from class me.datafox.dfxengine.dependencies.AbstractDependency
addDependent, addDependents, containsDependent, containsDependentRecursive, containsDependents, containsDependentsRecursive, dependentStream, getDependents, invalidateDependents, recursiveDependentStream, removeDependent, removeDependents
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
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
-
Constructor Details
-
Method Details
-
getHandle
-
getBase
-
getValue
-
isStatic
public boolean isStatic()This implementation always returnsfalse
. -
isImmutable
public boolean isImmutable()Description copied from interface:Value
Static values are always immutable.- Specified by:
isImmutable
in interfaceValue
- Returns:
true
if this value is immutable
-
canConvert
- Specified by:
canConvert
in interfaceValue
- 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
- Specified by:
convert
in interfaceValue
- 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
- Specified by:
convertIfAllowed
in interfaceValue
- 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
public 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.- Specified by:
toInteger
in interfaceValue
- Returns:
true
if the baseNumeral
was changed as a result of this operation- Throws:
UnsupportedOperationException
- if this value is immutable
-
toDecimal
public 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.- Specified by:
toDecimal
in interfaceValue
- Returns:
true
if the baseNumeral
was changed as a result of this operation- Throws:
UnsupportedOperationException
- if this value is immutable
-
toSmallestType
public boolean toSmallestType()Converts the baseNumeral
to the smallest type that can hold its represented value. Will not convert between integer and decimal representations.- Specified by:
toSmallestType
in interfaceValue
- Returns:
true
if the baseNumeral
was changed as a result of this operation
-
set
- Specified by:
set
in interfaceValue
- Parameters:
value
- value to replace the current baseNumeral
- Throws:
UnsupportedOperationException
- if this value is immutable
-
apply
- Specified by:
apply
in interfaceValue
- Parameters:
operation
-SourceOperation
to be applied to the baseNumeral
context
-MathContext
for the operation- Throws:
UnsupportedOperationException
- if this value is immutable
-
apply
- Specified by:
apply
in interfaceValue
- 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
public void apply(DualParameterOperation operation, MathContext context, Numeral parameter1, Numeral parameter2) - Specified by:
apply
in interfaceValue
- 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 immutable
-
apply
- Specified by:
apply
in interfaceValue
- 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
- Specified by:
compare
in interfaceValue
- Parameters:
comparison
-Comparison
to be usedcontext
-ComparisonContext
for the comparisonother
-Numeral
to be compared with- Returns:
true
if the specifiedComparison
returnstrue
-
getModifiers
- Specified by:
getModifiers
in interfaceValue
- Returns:
Modifiers
associated with this value
-
addModifier
- Specified by:
addModifier
in interfaceValue
- Parameters:
modifier
-Modifier
to be added- Returns:
true
if theModifiers
of this value changed as a result of this operation
-
addModifiers
- Specified by:
addModifiers
in interfaceValue
- Parameters:
modifiers
-Modifiers
to be added- Returns:
true
if theModifiers
of this value changed as a result of this operation
-
removeModifier
- Specified by:
removeModifier
in interfaceValue
- Parameters:
modifier
-Modifier
to be removed- Returns:
true
if theModifiers
of this value changed as a result of this operation
-
removeModifiers
- Specified by:
removeModifiers
in interfaceValue
- Parameters:
modifiers
-Modifiers
to be removed- Returns:
true
if theModifiers
of this value changed as a result of this operation
-
containsModifier
- Specified by:
containsModifier
in interfaceValue
- Parameters:
modifier
-Modifier
to be checked for- Returns:
true
if the specifiedModifier
is associated with this value
-
containsModifiers
- Specified by:
containsModifiers
in interfaceValue
- Parameters:
modifiers
-Modifiers
to be checked for- Returns:
true
if all of the specifiedModifiers
are associated with this value
-
onInvalidate
protected void onInvalidate()Description copied from class:DependencyDependent
This method should be treated as the equivalent ofDependent.invalidate()
for classes extending DependencyDependent. This exists to avoid the need for callingsuper.invalidate()
orAbstractDependency.invalidateDependents()
which may cause hidden or hard to find bugs when forgotten.- Specified by:
onInvalidate
in classDependencyDependent
-
toString
-