add(value
:
Money)
:
Money
Returns a Money instance by adding the specified Money object to the current object.
equals(other
:
Object)
:
boolean
Compares two money values whether they are equivalent.
getCurrencyCode()
:
String
Returns the ISO 4217 currency mnemonic (such as 'USD', 'EUR') of the currency the money value relates to.
getValueOrNull()
:
Number
Return the value of the money instance or null if the Money instance is NOT_AVAILABLE.
isAvailable()
:
boolean
Identifies if the instance contains settings for value and currency.
newMoney(value
:
Decimal)
:
Money
Method returns a new instance of Money with the same currency but different value.
static prorate(dist
:
Money, values
:
Money...)
:
Money[]
Prorates the specified values using the specified discount.
subtract(value
:
Money)
:
Money
Returns a new Money instance by substracting the specified Money object from the current object.
toFormattedString()
:
String
Returns a string representation of Money according to the regional settings configured for current request locale, for example '$59.00' or 'USD 59.00'.
toString()
:
String
Returns a string representation of this Money object.
valueOf()
:
Object
According to the ECMA spec returns the "natural" primitve value.
add
Returns a Money instance by adding
the specified Money object to the current object. Only objects representing the
same currency can be added. If one of the Money values is N/A, the
result is N/A.
Parameters:
value
-
the Money object to add to this Money instance.
Returns:
the Money object representing the sum of the operands.
addPercent
Adds a certain percentage to the money object. The percent value is given
as true percent value, so for example 10 represent 10%. If this Money is
N/A the result is also N/A.
Parameters:
percent
-
the percent value
Returns:
new Money object with the result of the calculation
addRate
Adds a rate (e.g. 0.05) to the money object. This is typically for example
to add a tax rate.
Parameters:
value
-
the rate to add.
Returns:
a new Money object with rate added.
compareTo
Compares two Money values. An exception is thrown if the two Money values
are of different currency. If one of the Money values represents the N/A value
it is treated as 0.0.
Parameters:
other
-
the money instance to comare against this money instance.
Returns:
the comparison of 0 if the money instances are equal or non-0 if they are different.
divide
Divide Money object by specified divisor. If this Money is
N/A the result is also N/A.
Parameters:
divisor
-
the divisor.
Returns:
Money object representing division result
equals
equals(other
:
Object)
:
boolean
Compares two money values whether they are equivalent.
Parameters:
other
-
the object to compare against this money instance.
Returns:
true if equal, false otherwise.
getCurrencyCode
Returns the ISO 4217 currency mnemonic (such as 'USD', 'EUR') of the currency the
money value relates to.
Note a money instance may also describe a price that is 'not available'.
In this case the value of this attribute is N/A
.
Returns:
the value of the currency code.
getDecimalValue
Returns the money as
Decimal,
null
is returned when the money is not available.
getValue
Returns the value of the money instance.
Returns:
the value of the money instance.
getValueOrNull
Return the value of the money instance or null if the
Money instance is NOT_AVAILABLE.
Returns:
Value of money instance or null.
hashCode
Calculates the hash code for a money;
isAvailable
isAvailable()
:
boolean
Identifies if the instance contains settings for value and currency.
Returns:
true if the instance is initialized with value and currency, false if the state is 'not available'.
isOfSameCurrency
isOfSameCurrency(value
:
Money)
:
boolean
Identifies if two Money value have the same currency.
Parameters:
value
-
the Money value passed to be tested
Returns:
true if both instances have the same currency, false otherwise.
multiply
Multiply Money object by specified factor. If this Money is
N/A the result is also N/A.
Parameters:
factor
-
multiplication factor
Returns:
Money object representing multiplication result.
multiply
Multiplies the Money object with the given quantity. If this Money is
N/A the result is also N/A.
Parameters:
quantity
-
the quantity to multiply the value by
Returns:
a new Money representing the multiplication result.
newMoney
Method returns a new instance of Money with the same currency but
different value. An N/A instance is returned if value is null.
Parameters:
value
-
as a decimal
Returns:
new Money instance with same currency
percentLessThan
Convenience method.
Calculates and returns the percentage off this price represents in
relation to the passed base price. The result is generally equal to
100.0 - this.percentOf(value)
. For example, if this value
is $30 and the passed value is $50, then the return
value will be 40.0, representing a 40% discount.
This method will return null if the compare value is null, this value or
the compare value is unavailable, or the compare value equals 0.0.
Parameters:
value
-
The price to compare to this price
Returns:
The percentage discount this price represents in relation to the passed base price.
Throws:
IllegalArgumentException
-
If the currencies are not comparable.
percentOf
Convenience method.
Calculates and returns the percentage of the passed value this
price represents. For example, if this value is $30 and
the passed value is $50, then the return value will be 60.0 (i.e. 60%).
This method will return null if the compare value is null, this value or
the compare value is unavailable, or the compare value equals 0.0.
Parameters:
value
-
The price to compare to this price
Returns:
The percentage of the compare price this price represents, or null.
Throws:
IllegalArgumentException
-
If the currencies are not comparable.
prorate
Prorates the specified values using the specified discount.
Parameters:
dist
-
the proration discount.
values
-
the values to prorate.
Returns:
the prorated values.
subtract
Returns a new Money instance by substracting the specified Money object
from the current object. Only objects representing the
same currency can be subtracted. If one of the Money values is N/A, the
result is N/A.
Parameters:
value
-
the Money object to subtract
Returns:
the Money object representing the result of subtraction.
subtractPercent
Subtracts a certain percentage from the money object. The percent value is given
as true percent value, so for example 10 represent 10%. If this Money is
N/A the result is also N/A.
Parameters:
percent
-
the percent value
Returns:
new Money object with the result of the calculation
subtractRate
Subtracts a rate (e.g. 0.05) from the money object. This is typically for example
to subtract a tax rates.
Parameters:
value
-
the rate to subtract.
Returns:
a new Money object with rate subtracted.
toFormattedString
Returns a string representation of Money according to the regional settings configured for current request
locale, for example '$59.00' or 'USD 59.00'.
Returns:
The formatted String representation of the passed money. In case of an error the string 'N/A' is returned.
toNumberString
Returns a string representation for the numeric value of this money.
The number is formatted with the decimal symbols of the platforms
default locale.
Returns:
a string representation for the numeric value of this money.
toString
Returns a string representation of this Money object.
Returns:
a string representation of this Money object.
valueOf
According to the ECMA spec returns the "natural" primitve value. Here
the value portion of the Money is returned.