public class OfficeCurrency extends Object
Constructor and Description |
---|
OfficeCurrency(Currency currency,
Double value)
It builds an inmutable class of the OfficeCurrency
|
OfficeCurrency(Currency currency,
Double value,
NumberFormat format)
It builds an inmutable class of the OfficeCurrency
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o) |
Currency |
getCurrency() |
Double |
getValue() |
int |
hashCode() |
String |
toString()
It prints the money quantity in a standard form (value + currency name)
For example:
5EUR
10USD
|
public OfficeCurrency(Currency currency, Double value)
currency
- The currency instance class, it specify which currency is. It can be nullvalue
- The numeric value. It can be null.public OfficeCurrency(Currency currency, Double value, NumberFormat format)
currency
- The currency instance class, it specify which currency is. It can be nullvalue
- The numeric value. It can be null.format
- How the currency value should be formatted in a stringCopyright © 2023. All rights reserved.