- All Implemented Interfaces:
Serializable
,Cloneable
,Comparable<CurrencyValue>
,Formattable
A value type for currency values.
As there is no constant conversion between currencies, this value type
is not implementing the interface
DimensionedValue
.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Version:
- $Id: CurrencyValue.java 1135 2024-05-28 21:32:48Z tquadrat $
- Since:
- 0.0.4
- See Also:
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.value.CurrencyValue"
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Currency
The unit for the value.private final BigDecimal
The numerical value for this instance.private static final long
The serial version UID for objects of this class: -2075489505691464486L. -
Constructor Summary
ConstructorsConstructorDescriptionCurrencyValue
(Currency unit, String value) Creates a newCurrencyValue
instance.CurrencyValue
(Currency unit, BigDecimal value) Creates a newCurrencyValue
instance.CurrencyValue
(Currency unit, N value) Creates a newCurrencyValue
instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal BigDecimal
Returns the amount.final CurrencyValue
clone()
final int
compareTo
(CurrencyValue other) final CurrencyValue
copy()
Creates a new copy of this value.final CurrencyValue
copy
(Currency unit, BigDecimal conversionFactor) Creates a new instance ofCurrencyValue
for a differentCurrency
.final boolean
final void
final Currency
getUnit()
Returns the unit for the value.final int
hashCode()
final String
toString()
final String
toString
(int width) Provides a String representation of this valuefinal String
toString
(int width, int precision) Provides a String representation of this valuefinal String
Provides a String representation of this valuefinal String
Provides a String representation of this valuefinal String
Provides a String representation of this valuefinal String
Provides a String representation of this value
-
Field Details
-
m_Unit
The unit for the value. -
m_Value
The numerical value for this instance. -
serialVersionUID
The serial version UID for objects of this class: -2075489505691464486L.- See Also:
-
-
Constructor Details
-
CurrencyValue
Creates a newCurrencyValue
instance.- Parameters:
unit
- The unit.value
- The value; only absolute (positive) values are allowed, a sign will be stripped.
-
CurrencyValue
Creates a newCurrencyValue
instance.- Parameters:
unit
- The unit.value
- The value; it must be possible to parse the given String into aBigDecimal
.- Throws:
NumberFormatException
- The provided value cannot be converted into aBigDecimal
.
-
CurrencyValue
Creates a newCurrencyValue
instance.- Type Parameters:
N
- The type ofvalue
.- Parameters:
unit
- The unit.value
- The value.
-
-
Method Details
-
baseValue
Returns the amount.
- Returns:
- The numerical value for this instance of
CurrencyValue
.
-
clone
-
compareTo
- Specified by:
compareTo
in interfaceComparable<CurrencyValue>
- Throws:
IllegalArgumentException
- The currencies for both values are different.
-
copy
Creates a new copy of this value.- Returns:
- The copy.
- See Also:
-
copy
Creates a new instance ofCurrencyValue
for a differentCurrency
.- Parameters:
unit
- TheCurrency
for the new value.conversionFactor
- The value for this instance multiplied with the given factor results in the value for the instance.- Returns:
- The new instance.
-
equals
-
formatTo
The precision is applied to the numerical part only. The width includes the currency symbol, too.
- Specified by:
formatTo
in interfaceFormattable
- Note:
-
- In case the
formatter
argument isnull
, this method throws aNullPointerException
and not the usualNullArgumentException
, because this method is usually called by instances ofjava.util.Formatter
, and those do not know about our special exceptions.
- In case the
- Throws:
NullPointerException
- Theformatter
argument isnull
.- See Also:
-
getUnit
Returns the unit for the value.- Returns:
- The unit.
-
hashCode
-
toString
Provides a String representation of this value, in the format
<numerical value> <currency symbol>
and for the default Locale, like "
4.50 €
", where the Locale determines the decimal separator.The precision is applied to the numerical part only. The width includes the currency symbol, too.
- Parameters:
width
- The minimum number of characters to be written to the output. If the length of the converted value is less than the width then the output will be padded by ' ' until the total number of characters equals width. The padding is at the beginning, as numerical values are usually right justified. Ifwidth
is -1 then there is no minimum.precision
- – The number of digits for the mantissa of the value. Ifprecision
is -1 then there is no explicit limit on the size of the mantissa.- Returns:
- The String representation for this value.
-
toString
Provides a String representation of this value, in the format
<numerical value> <currency symbol>
and for the default Locale, like "
4.50 €
", where the Locale determines the decimal separator.The precision is taken from the
currency
and applied to the numerical part only. The width includes the currency symbol, too.- Parameters:
width
- The minimum number of characters to be written to the output. If the length of the converted value is less than the width then the output will be padded by ' ' until the total number of characters equals width. The padding is at the beginning, as numerical values are usually right justified. Ifwidth
is -1 then there is no minimum.- Returns:
- The String representation for this value.
-
toString
Provides a String representation of this value, in the format
<numerical value> <currency symbol>
for the given
Locale
that determines the decimal separator, like "4.50 €
" vs. "4,50 €
".The precision is applied to the numerical part only. The width includes the currency symbol, too.
- Parameters:
locale
- The locale to use.width
- The minimum number of characters to be written to the output. If the length of the converted value is less than the width then the output will be padded by ' ' until the total number of characters equals width. The padding is at the beginning, as numerical values are usually right justified. Ifwidth
is -1 then there is no minimum.precision
- – The number of digits for the mantissa of the value. Ifprecision
is -1 then there is no explicit limit on the size of the mantissa.- Returns:
- The String representation for this value.
-
toString
Provides a String representation of this value, in the format
<numerical value> <currency symbol>
for the given
Locale
that determines the decimal separator, like "4.50 €
" vs. "4,50 €
".The precision is taken from the
currency
and applied to the numerical part only. The width includes the currency symbol, too.- Parameters:
locale
- The locale to use.width
- The minimum number of characters to be written to the output. If the length of the converted value is less than the width then the output will be padded by ' ' until the total number of characters equals width. The padding is at the beginning, as numerical values are usually right justified. Ifwidth
is -1 then there is no minimum.- Returns:
- The String representation for this value.
-
toString
Provides a String representation of this value, in the format
<numerical value> <currency symbol>
for the given
Locale
that determines the decimal separator, like "4.50 €
" vs. "4,50 €
".The precision is applied to the numerical part only. The width includes the unit symbol, too.
- Parameters:
locale
- The locale to use.width
- The minimum number of characters to be written to the output. If the length of the converted value is less than the width then the output will be padded by ' ' until the total number of characters equals width. The padding is at the beginning, as numerical values are usually right justified. Ifwidth
is -1 then there is no minimum.precision
- – The number of digits for the mantissa of the value. Ifprecision
is -1 then there is no explicit limit on the size of the mantissa.useNiceUnit
-true
if the methodunitSymbolForPrinting()
should be used to retrieve the unit symbol,false
if the usual one is sufficient.- Returns:
- The String representation for this value.
-
toString
public final String toString(Locale locale, String format, boolean useNiceUnit) throws IllegalFormatException Provides a String representation of this value, in the format that is defined by the provided format String.
That format String must contain exactly one '%f' tag and one '%s' tag; the first takes the numerical value, the second the unit.
The provided
Locale
determines the decimal separator and the optional thousands separator.- Parameters:
locale
- The locale to use.format
- The format String.useNiceUnit
-true
if the methodunitSymbolForPrinting()
should be used to retrieve the unit symbol,false
if the usual one is sufficient.- Returns:
- The String representation for this value.
- Throws:
IllegalFormatException
- The provided format String is invalid.- See Also:
-
toString
-