MoneyUnit.java
package org.djunits.unit;
import java.util.ArrayList;
import org.djunits.unit.unitsystem.UnitSystem;
import org.joda.money.CurrencyUnit;
/**
* MoneyUnit defines a monetary unit, and wraps the joda money currency unit. At this time, conversion rates between monetary
* units are not used. A standard monetary unit, defined as a static variable, can be set to be used in the code.
* <p>
* Copyright (c) 2015-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
* <p>
* $LastChangedDate: 2019-03-02 19:06:46 +0100 (Sat, 02 Mar 2019) $, @version $Revision: 342 $, by $Author: averbraeck $,
* initial version Sep 03, 2015 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
*/
public class MoneyUnit extends LinearUnit<MoneyUnit>
{
// TODO allow for static conversion factors between MoneyUnits.
// TODO allow for dynamic conversion factors between MoneyUnits.
/** */
private static final long serialVersionUID = 20150903L;
/** The joda-money CurrencyUnit on which this djunits unit is based. */
private final CurrencyUnit currencyUnit;
/** the code number of the currency to identify it uniquely. */
private final int codeNumber;
/** the code string of the currency to identify it uniquely. */
private final String codeString;
/** The currency 'AED' - United Arab Emirates dirham. */
public static final MoneyUnit AED;
/** The currency 'AFN' - Afghan afghani. */
public static final MoneyUnit AFN;
/** The currency 'ALL' - Albanian lek. */
public static final MoneyUnit ALL;
/** The currency 'AMD' - Armenian dram. */
public static final MoneyUnit AMD;
/** The currency 'ANG' - Netherlands Antillean guilder. */
public static final MoneyUnit ANG;
/** The currency 'AOA' - Angolan kwanza. */
public static final MoneyUnit AOA;
/** The currency 'ARS' - Argentine peso. */
public static final MoneyUnit ARS;
/** The currency 'AUD' - Australian dollar. */
public static final MoneyUnit AUD;
/** The currency 'AWG' - Aruban florin. */
public static final MoneyUnit AWG;
/** The currency 'AZN' - Azerbaijani manat. */
public static final MoneyUnit AZN;
/** The currency 'BAM' - Bosnia and Herzegovina convertible mark. */
public static final MoneyUnit BAM;
/** The currency 'BBD' - Barbados dollar. */
public static final MoneyUnit BBD;
/** The currency 'BDT' - Bangladeshi taka. */
public static final MoneyUnit BDT;
/** The currency 'BGN' - Bulgarian lev. */
public static final MoneyUnit BGN;
/** The currency 'BHD' - Bahraini dinar. */
public static final MoneyUnit BHD;
/** The currency 'BIF' - Burundian franc. */
public static final MoneyUnit BIF;
/** The currency 'BMD' - Bermudian dollar. */
public static final MoneyUnit BMD;
/** The currency 'BND' - Brunei dollar. */
public static final MoneyUnit BND;
/** The currency 'BOB' - Boliviano. */
public static final MoneyUnit BOB;
/** The currency 'BOV' - Bolivian Mvdol (funds code). */
public static final MoneyUnit BOV;
/** The currency 'BRL' - Brazilian real. */
public static final MoneyUnit BRL;
/** The currency 'BSD' - Bahamian dollar. */
public static final MoneyUnit BSD;
/** The currency 'BTN' - Bhutanese ngultrum. */
public static final MoneyUnit BTN;
/** The currency 'BWP' - Botswana pula. */
public static final MoneyUnit BWP;
/** The currency 'BYN' - New Belarusian ruble. */
public static final MoneyUnit BYN;
/** The currency 'BYR' - Belarusian ruble. */
public static final MoneyUnit BYR;
/** The currency 'BZD' - Belize dollar. */
public static final MoneyUnit BZD;
/** The currency 'CAD' - Canadian dollar. */
public static final MoneyUnit CAD;
/** The currency 'CDF' - Congolese franc. */
public static final MoneyUnit CDF;
/** The currency 'CHE' - WIR Euro (complementary currency). */
public static final MoneyUnit CHE;
/** The currency 'CHF' - Swiss franc. */
public static final MoneyUnit CHF;
/** The currency 'CHW' - WIR Franc (complementary currency). */
public static final MoneyUnit CHW;
/** The currency 'CLF' - Unidad de Fomento (funds code). */
public static final MoneyUnit CLF;
/** The currency 'CLP' - Chilean peso. */
public static final MoneyUnit CLP;
/** The currency 'CNY' - Chinese yuan. */
public static final MoneyUnit CNY;
/** The currency 'COP' - Colombian peso. */
public static final MoneyUnit COP;
/** The currency 'COU' - Unidad de Valor Real (UVR) (funds code)[7]. */
public static final MoneyUnit COU;
/** The currency 'CRC' - Costa Rican colon. */
public static final MoneyUnit CRC;
/** The currency 'CUC' - Cuban convertible peso. */
public static final MoneyUnit CUC;
/** The currency 'CUP' - Cuban peso. */
public static final MoneyUnit CUP;
/** The currency 'CVE' - Cape Verde escudo. */
public static final MoneyUnit CVE;
/** The currency 'CZK' - Czech koruna. */
public static final MoneyUnit CZK;
/** The currency 'DJF' - Djiboutian franc. */
public static final MoneyUnit DJF;
/** The currency 'DKK' - Danish krone. */
public static final MoneyUnit DKK;
/** The currency 'DOP' - Dominican peso. */
public static final MoneyUnit DOP;
/** The currency 'DZD' - Algerian dinar. */
public static final MoneyUnit DZD;
/** The currency 'EGP' - Egyptian pound. */
public static final MoneyUnit EGP;
/** The currency 'ERN' - Eritrean nakfa. */
public static final MoneyUnit ERN;
/** The currency 'ETB' - Ethiopian birr. */
public static final MoneyUnit ETB;
/** The currency 'EUR' - Euro. */
public static final MoneyUnit EUR;
/** The currency 'FJD' - Fiji dollar. */
public static final MoneyUnit FJD;
/** The currency 'FKP' - Falkland Islands pound. */
public static final MoneyUnit FKP;
/** The currency 'GBP' - Pound sterling. */
public static final MoneyUnit GBP;
/** The currency 'GEL' - Georgian lari. */
public static final MoneyUnit GEL;
/** The currency 'GHS' - Ghanaian cedi. */
public static final MoneyUnit GHS;
/** The currency 'GIP' - Gibraltar pound. */
public static final MoneyUnit GIP;
/** The currency 'GMD' - Gambian dalasi. */
public static final MoneyUnit GMD;
/** The currency 'GNF' - Guinean franc. */
public static final MoneyUnit GNF;
/** The currency 'GTQ' - Guatemalan quetzal. */
public static final MoneyUnit GTQ;
/** The currency 'GYD' - Guyanese dollar. */
public static final MoneyUnit GYD;
/** The currency 'HKD' - Hong Kong dollar. */
public static final MoneyUnit HKD;
/** The currency 'HNL' - Honduran lempira. */
public static final MoneyUnit HNL;
/** The currency 'HRK' - Croatian kuna. */
public static final MoneyUnit HRK;
/** The currency 'HTG' - Haitian gourde. */
public static final MoneyUnit HTG;
/** The currency 'HUF' - Hungarian forint. */
public static final MoneyUnit HUF;
/** The currency 'IDR' - Indonesian rupiah. */
public static final MoneyUnit IDR;
/** The currency 'ILS' - Israeli new shekel. */
public static final MoneyUnit ILS;
/** The currency 'INR' - Indian rupee. */
public static final MoneyUnit INR;
/** The currency 'IQD' - Iraqi dinar. */
public static final MoneyUnit IQD;
/** The currency 'IRR' - Iranian rial. */
public static final MoneyUnit IRR;
/** The currency 'ISK' - Icelandic króna. */
public static final MoneyUnit ISK;
/** The currency 'JMD' - Jamaican dollar. */
public static final MoneyUnit JMD;
/** The currency 'JOD' - Jordanian dinar. */
public static final MoneyUnit JOD;
/** The currency 'JPY' - Japanese yen. */
public static final MoneyUnit JPY;
/** The currency 'KES' - Kenyan shilling. */
public static final MoneyUnit KES;
/** The currency 'KGS' - Kyrgyzstani som. */
public static final MoneyUnit KGS;
/** The currency 'KHR' - Cambodian riel. */
public static final MoneyUnit KHR;
/** The currency 'KMF' - Comoro franc. */
public static final MoneyUnit KMF;
/** The currency 'KPW' - North Korean won. */
public static final MoneyUnit KPW;
/** The currency 'KRW' - South Korean won. */
public static final MoneyUnit KRW;
/** The currency 'KWD' - Kuwaiti dinar. */
public static final MoneyUnit KWD;
/** The currency 'KYD' - Cayman Islands dollar. */
public static final MoneyUnit KYD;
/** The currency 'KZT' - Kazakhstani tenge. */
public static final MoneyUnit KZT;
/** The currency 'LAK' - Lao kip. */
public static final MoneyUnit LAK;
/** The currency 'LBP' - Lebanese pound. */
public static final MoneyUnit LBP;
/** The currency 'LKR' - Sri Lankan rupee. */
public static final MoneyUnit LKR;
/** The currency 'LRD' - Liberian dollar. */
public static final MoneyUnit LRD;
/** The currency 'LSL' - Lesotho loti. */
public static final MoneyUnit LSL;
/** The currency 'LYD' - Libyan dinar. */
public static final MoneyUnit LYD;
/** The currency 'MAD' - Moroccan dirham. */
public static final MoneyUnit MAD;
/** The currency 'MDL' - Moldovan leu. */
public static final MoneyUnit MDL;
/** The currency 'MGA' - Malagasy ariary. */
public static final MoneyUnit MGA;
/** The currency 'MKD' - Macedonian denar. */
public static final MoneyUnit MKD;
/** The currency 'MMK' - Myanmar kyat. */
public static final MoneyUnit MMK;
/** The currency 'MNT' - Mongolian tögrög. */
public static final MoneyUnit MNT;
/** The currency 'MOP' - Macanese pataca. */
public static final MoneyUnit MOP;
/** The currency 'MRO' - Mauritanian ouguiya. */
public static final MoneyUnit MRO;
/** The currency 'MUR' - Mauritian rupee. */
public static final MoneyUnit MUR;
/** The currency 'MVR' - Maldivian rufiyaa. */
public static final MoneyUnit MVR;
/** The currency 'MWK' - Malawian kwacha. */
public static final MoneyUnit MWK;
/** The currency 'MXN' - Mexican peso. */
public static final MoneyUnit MXN;
/** The currency 'MXV' - Mexican Unidad de Inversion (UDI) (funds code). */
public static final MoneyUnit MXV;
/** The currency 'MYR' - Malaysian ringgit. */
public static final MoneyUnit MYR;
/** The currency 'MZN' - Mozambican metical. */
public static final MoneyUnit MZN;
/** The currency 'NAD' - Namibian dollar. */
public static final MoneyUnit NAD;
/** The currency 'NGN' - Nigerian naira. */
public static final MoneyUnit NGN;
/** The currency 'NIO' - Nicaraguan córdoba. */
public static final MoneyUnit NIO;
/** The currency 'NOK' - Norwegian krone. */
public static final MoneyUnit NOK;
/** The currency 'NPR' - Nepalese rupee. */
public static final MoneyUnit NPR;
/** The currency 'NZD' - New Zealand dollar. */
public static final MoneyUnit NZD;
/** The currency 'OMR' - Omani rial. */
public static final MoneyUnit OMR;
/** The currency 'PAB' - Panamanian balboa. */
public static final MoneyUnit PAB;
/** The currency 'PEN' - Peruvian Sol. */
public static final MoneyUnit PEN;
/** The currency 'PGK' - Papua New Guinean kina. */
public static final MoneyUnit PGK;
/** The currency 'PHP' - Philippine peso. */
public static final MoneyUnit PHP;
/** The currency 'PKR' - Pakistani rupee. */
public static final MoneyUnit PKR;
/** The currency 'PLN' - Polish zloty. */
public static final MoneyUnit PLN;
/** The currency 'PYG' - Paraguayan guaraní. */
public static final MoneyUnit PYG;
/** The currency 'QAR' - Qatari riyal. */
public static final MoneyUnit QAR;
/** The currency 'RON' - Romanian leu. */
public static final MoneyUnit RON;
/** The currency 'RSD' - Serbian dinar. */
public static final MoneyUnit RSD;
/** The currency 'RUB' - Russian ruble. */
public static final MoneyUnit RUB;
/** The currency 'RWF' - Rwandan franc. */
public static final MoneyUnit RWF;
/** The currency 'SAR' - Saudi riyal. */
public static final MoneyUnit SAR;
/** The currency 'SBD' - Solomon Islands dollar. */
public static final MoneyUnit SBD;
/** The currency 'SCR' - Seychelles rupee. */
public static final MoneyUnit SCR;
/** The currency 'SDG' - Sudanese pound. */
public static final MoneyUnit SDG;
/** The currency 'SEK' - Swedish krona/kronor. */
public static final MoneyUnit SEK;
/** The currency 'SGD' - Singapore dollar. */
public static final MoneyUnit SGD;
/** The currency 'SHP' - Saint Helena pound. */
public static final MoneyUnit SHP;
/** The currency 'SLL' - Sierra Leonean leone. */
public static final MoneyUnit SLL;
/** The currency 'SOS' - Somali shilling. */
public static final MoneyUnit SOS;
/** The currency 'SRD' - Surinamese dollar. */
public static final MoneyUnit SRD;
/** The currency 'SSP' - South Sudanese pound. */
public static final MoneyUnit SSP;
/** The currency 'STD' - São Tomé and Príncipe dobra. */
public static final MoneyUnit STD;
/** The currency 'SVC' - Salvadoran colón. */
public static final MoneyUnit SVC;
/** The currency 'SYP' - Syrian pound. */
public static final MoneyUnit SYP;
/** The currency 'SZL' - Swazi lilangeni. */
public static final MoneyUnit SZL;
/** The currency 'THB' - Thai baht. */
public static final MoneyUnit THB;
/** The currency 'TJS' - Tajikistani somoni. */
public static final MoneyUnit TJS;
/** The currency 'TMT' - Turkmenistani manat. */
public static final MoneyUnit TMT;
/** The currency 'TND' - Tunisian dinar. */
public static final MoneyUnit TND;
/** The currency 'TOP' - Tongan pa?anga. */
public static final MoneyUnit TOP;
/** The currency 'TRY' - Turkish lira. */
public static final MoneyUnit TRY;
/** The currency 'TTD' - Trinidad and Tobago dollar. */
public static final MoneyUnit TTD;
/** The currency 'TWD' - New Taiwan dollar. */
public static final MoneyUnit TWD;
/** The currency 'TZS' - Tanzanian shilling. */
public static final MoneyUnit TZS;
/** The currency 'UAH' - Ukrainian hryvnia. */
public static final MoneyUnit UAH;
/** The currency 'UGX' - Ugandan shilling. */
public static final MoneyUnit UGX;
/** The currency 'USD' - United States dollar. */
public static final MoneyUnit USD;
/** The currency 'USN' - United States dollar (next day) (funds code). */
public static final MoneyUnit USN;
/** The currency 'UYI' - Uruguay Peso en Unidades Indexadas (URUIURUI) (funds code). */
public static final MoneyUnit UYI;
/** The currency 'UYU' - Uruguayan peso. */
public static final MoneyUnit UYU;
/** The currency 'UZS' - Uzbekistan som. */
public static final MoneyUnit UZS;
/** The currency 'VEF' - Venezuelan bolívar. */
public static final MoneyUnit VEF;
/** The currency 'VND' - Vietnamese dong. */
public static final MoneyUnit VND;
/** The currency 'VUV' - Vanuatu vatu. */
public static final MoneyUnit VUV;
/** The currency 'WST' - Samoan tala. */
public static final MoneyUnit WST;
/** The currency 'XAF' - CFA franc BEAC. */
public static final MoneyUnit XAF;
/** The currency 'XAG' - Silver (one troy ounce). */
public static final MoneyUnit XAG;
/** The currency 'XAU' - Gold (one troy ounce). */
public static final MoneyUnit XAU;
/** The currency 'XBA' - European Composite Unit (EURCO) (bond market unit). */
public static final MoneyUnit XBA;
/** The currency 'XBB' - European Monetary Unit (E.M.U.-6) (bond market unit). */
public static final MoneyUnit XBB;
/** The currency 'XBC' - European Unit of Account 9 (E.U.A.-9) (bond market unit). */
public static final MoneyUnit XBC;
/** The currency 'XBD' - European Unit of Account 17 (E.U.A.-17) (bond market unit). */
public static final MoneyUnit XBD;
/** The currency 'XCD' - East Caribbean dollar. */
public static final MoneyUnit XCD;
/** The currency 'XDR' - Special drawing rights. */
public static final MoneyUnit XDR;
/** The currency 'XOF' - CFA franc BCEAO. */
public static final MoneyUnit XOF;
/** The currency 'XPD' - Palladium (one troy ounce). */
public static final MoneyUnit XPD;
/** The currency 'XPF' - CFP franc (franc Pacifique). */
public static final MoneyUnit XPF;
/** The currency 'XPT' - Platinum (one troy ounce). */
public static final MoneyUnit XPT;
/** The currency 'XSU' - SUCRE. */
public static final MoneyUnit XSU;
/** The currency 'XTS' - Code reserved for testing purposes. */
public static final MoneyUnit XTS;
/** The currency 'XUA' - ADB Unit of Account. */
public static final MoneyUnit XUA;
/** The currency 'X X X' - No currency. */
public static final MoneyUnit XXX;
/** The currency 'YER' - Yemeni rial. */
public static final MoneyUnit YER;
/** The currency 'ZAR' - South African rand. */
public static final MoneyUnit ZAR;
/** The currency 'ZMW' - Zambian kwacha. */
public static final MoneyUnit ZMW;
/** The currency 'ZWL' - Zimbabwean dollar A/10. */
public static final MoneyUnit ZWL;
/** The currency 'XBT' - Bitcoin. */
public static final MoneyUnit XBT;
/** The standard unit to use. */
private static MoneyUnit standardMoneyUnit;
static
{
CurrencyUnit.registerCurrency("BOV", 984, 2, new ArrayList<String>());
CurrencyUnit.registerCurrency("BYR", 974, 0, new ArrayList<String>());
CurrencyUnit.registerCurrency("CHE", 947, 2, new ArrayList<String>());
CurrencyUnit.registerCurrency("CHW", 948, 2, new ArrayList<String>());
CurrencyUnit.registerCurrency("CLF", 990, 4, new ArrayList<String>());
CurrencyUnit.registerCurrency("COU", 970, 2, new ArrayList<String>());
CurrencyUnit.registerCurrency("CUC", 931, 2, new ArrayList<String>());
CurrencyUnit.registerCurrency("MXV", 979, 2, new ArrayList<String>());
CurrencyUnit.registerCurrency("USN", 997, 2, new ArrayList<String>());
CurrencyUnit.registerCurrency("UYI", 940, 0, new ArrayList<String>());
CurrencyUnit.registerCurrency("XBT", -1, 8, new ArrayList<String>());
AED = new MoneyUnit(CurrencyUnit.getInstance("AED"), "MoneyUnit.AED");
AFN = new MoneyUnit(CurrencyUnit.getInstance("AFN"), "MoneyUnit.AFN");
ALL = new MoneyUnit(CurrencyUnit.getInstance("ALL"), "MoneyUnit.ALL");
AMD = new MoneyUnit(CurrencyUnit.getInstance("AMD"), "MoneyUnit.AMD");
ANG = new MoneyUnit(CurrencyUnit.getInstance("ANG"), "MoneyUnit.ANG");
AOA = new MoneyUnit(CurrencyUnit.getInstance("AOA"), "MoneyUnit.AOA");
ARS = new MoneyUnit(CurrencyUnit.getInstance("ARS"), "MoneyUnit.ARS");
AUD = new MoneyUnit(CurrencyUnit.getInstance("AUD"), "MoneyUnit.AUD");
AWG = new MoneyUnit(CurrencyUnit.getInstance("AWG"), "MoneyUnit.AWG");
AZN = new MoneyUnit(CurrencyUnit.getInstance("AZN"), "MoneyUnit.AZN");
BAM = new MoneyUnit(CurrencyUnit.getInstance("BAM"), "MoneyUnit.BAM");
BBD = new MoneyUnit(CurrencyUnit.getInstance("BBD"), "MoneyUnit.BBD");
BDT = new MoneyUnit(CurrencyUnit.getInstance("BDT"), "MoneyUnit.BDT");
BGN = new MoneyUnit(CurrencyUnit.getInstance("BGN"), "MoneyUnit.BGN");
BHD = new MoneyUnit(CurrencyUnit.getInstance("BHD"), "MoneyUnit.BHD");
BIF = new MoneyUnit(CurrencyUnit.getInstance("BIF"), "MoneyUnit.BIF");
BMD = new MoneyUnit(CurrencyUnit.getInstance("BMD"), "MoneyUnit.BMD");
BND = new MoneyUnit(CurrencyUnit.getInstance("BND"), "MoneyUnit.BND");
BOB = new MoneyUnit(CurrencyUnit.getInstance("BOB"), "MoneyUnit.BOB");
BOV = new MoneyUnit(CurrencyUnit.getInstance("BOV"), "MoneyUnit.BOV");
BRL = new MoneyUnit(CurrencyUnit.getInstance("BRL"), "MoneyUnit.BRL");
BSD = new MoneyUnit(CurrencyUnit.getInstance("BSD"), "MoneyUnit.BSD");
BTN = new MoneyUnit(CurrencyUnit.getInstance("BTN"), "MoneyUnit.BTN");
BWP = new MoneyUnit(CurrencyUnit.getInstance("BWP"), "MoneyUnit.BWP");
BYN = new MoneyUnit(CurrencyUnit.getInstance("BYN"), "MoneyUnit.BYN");
BYR = new MoneyUnit(CurrencyUnit.getInstance("BYR"), "MoneyUnit.BYR");
BZD = new MoneyUnit(CurrencyUnit.getInstance("BZD"), "MoneyUnit.BZD");
CAD = new MoneyUnit(CurrencyUnit.getInstance("CAD"), "MoneyUnit.CAD");
CDF = new MoneyUnit(CurrencyUnit.getInstance("CDF"), "MoneyUnit.CDF");
CHE = new MoneyUnit(CurrencyUnit.getInstance("CHE"), "MoneyUnit.CHE");
CHF = new MoneyUnit(CurrencyUnit.getInstance("CHF"), "MoneyUnit.CHF");
CHW = new MoneyUnit(CurrencyUnit.getInstance("CHW"), "MoneyUnit.CHW");
CLF = new MoneyUnit(CurrencyUnit.getInstance("CLF"), "MoneyUnit.CLF");
CLP = new MoneyUnit(CurrencyUnit.getInstance("CLP"), "MoneyUnit.CLP");
CNY = new MoneyUnit(CurrencyUnit.getInstance("CNY"), "MoneyUnit.CNY");
COP = new MoneyUnit(CurrencyUnit.getInstance("COP"), "MoneyUnit.COP");
COU = new MoneyUnit(CurrencyUnit.getInstance("COU"), "MoneyUnit.COU");
CRC = new MoneyUnit(CurrencyUnit.getInstance("CRC"), "MoneyUnit.CRC");
CUC = new MoneyUnit(CurrencyUnit.getInstance("CUC"), "MoneyUnit.CUC");
CUP = new MoneyUnit(CurrencyUnit.getInstance("CUP"), "MoneyUnit.CUP");
CVE = new MoneyUnit(CurrencyUnit.getInstance("CVE"), "MoneyUnit.CVE");
CZK = new MoneyUnit(CurrencyUnit.getInstance("CZK"), "MoneyUnit.CZK");
DJF = new MoneyUnit(CurrencyUnit.getInstance("DJF"), "MoneyUnit.DJF");
DKK = new MoneyUnit(CurrencyUnit.getInstance("DKK"), "MoneyUnit.DKK");
DOP = new MoneyUnit(CurrencyUnit.getInstance("DOP"), "MoneyUnit.DOP");
DZD = new MoneyUnit(CurrencyUnit.getInstance("DZD"), "MoneyUnit.DZD");
EGP = new MoneyUnit(CurrencyUnit.getInstance("EGP"), "MoneyUnit.EGP");
ERN = new MoneyUnit(CurrencyUnit.getInstance("ERN"), "MoneyUnit.ERN");
ETB = new MoneyUnit(CurrencyUnit.getInstance("ETB"), "MoneyUnit.ETB");
EUR = new MoneyUnit(CurrencyUnit.getInstance("EUR"), "MoneyUnit.EUR");
FJD = new MoneyUnit(CurrencyUnit.getInstance("FJD"), "MoneyUnit.FJD");
FKP = new MoneyUnit(CurrencyUnit.getInstance("FKP"), "MoneyUnit.FKP");
GBP = new MoneyUnit(CurrencyUnit.getInstance("GBP"), "MoneyUnit.GBP");
GEL = new MoneyUnit(CurrencyUnit.getInstance("GEL"), "MoneyUnit.GEL");
GHS = new MoneyUnit(CurrencyUnit.getInstance("GHS"), "MoneyUnit.GHS");
GIP = new MoneyUnit(CurrencyUnit.getInstance("GIP"), "MoneyUnit.GIP");
GMD = new MoneyUnit(CurrencyUnit.getInstance("GMD"), "MoneyUnit.GMD");
GNF = new MoneyUnit(CurrencyUnit.getInstance("GNF"), "MoneyUnit.GNF");
GTQ = new MoneyUnit(CurrencyUnit.getInstance("GTQ"), "MoneyUnit.GTQ");
GYD = new MoneyUnit(CurrencyUnit.getInstance("GYD"), "MoneyUnit.GYD");
HKD = new MoneyUnit(CurrencyUnit.getInstance("HKD"), "MoneyUnit.HKD");
HNL = new MoneyUnit(CurrencyUnit.getInstance("HNL"), "MoneyUnit.HNL");
HRK = new MoneyUnit(CurrencyUnit.getInstance("HRK"), "MoneyUnit.HRK");
HTG = new MoneyUnit(CurrencyUnit.getInstance("HTG"), "MoneyUnit.HTG");
HUF = new MoneyUnit(CurrencyUnit.getInstance("HUF"), "MoneyUnit.HUF");
IDR = new MoneyUnit(CurrencyUnit.getInstance("IDR"), "MoneyUnit.IDR");
ILS = new MoneyUnit(CurrencyUnit.getInstance("ILS"), "MoneyUnit.ILS");
INR = new MoneyUnit(CurrencyUnit.getInstance("INR"), "MoneyUnit.INR");
IQD = new MoneyUnit(CurrencyUnit.getInstance("IQD"), "MoneyUnit.IQD");
IRR = new MoneyUnit(CurrencyUnit.getInstance("IRR"), "MoneyUnit.IRR");
ISK = new MoneyUnit(CurrencyUnit.getInstance("ISK"), "MoneyUnit.ISK");
JMD = new MoneyUnit(CurrencyUnit.getInstance("JMD"), "MoneyUnit.JMD");
JOD = new MoneyUnit(CurrencyUnit.getInstance("JOD"), "MoneyUnit.JOD");
JPY = new MoneyUnit(CurrencyUnit.getInstance("JPY"), "MoneyUnit.JPY");
KES = new MoneyUnit(CurrencyUnit.getInstance("KES"), "MoneyUnit.KES");
KGS = new MoneyUnit(CurrencyUnit.getInstance("KGS"), "MoneyUnit.KGS");
KHR = new MoneyUnit(CurrencyUnit.getInstance("KHR"), "MoneyUnit.KHR");
KMF = new MoneyUnit(CurrencyUnit.getInstance("KMF"), "MoneyUnit.KMF");
KPW = new MoneyUnit(CurrencyUnit.getInstance("KPW"), "MoneyUnit.KPW");
KRW = new MoneyUnit(CurrencyUnit.getInstance("KRW"), "MoneyUnit.KRW");
KWD = new MoneyUnit(CurrencyUnit.getInstance("KWD"), "MoneyUnit.KWD");
KYD = new MoneyUnit(CurrencyUnit.getInstance("KYD"), "MoneyUnit.KYD");
KZT = new MoneyUnit(CurrencyUnit.getInstance("KZT"), "MoneyUnit.KZT");
LAK = new MoneyUnit(CurrencyUnit.getInstance("LAK"), "MoneyUnit.LAK");
LBP = new MoneyUnit(CurrencyUnit.getInstance("LBP"), "MoneyUnit.LBP");
LKR = new MoneyUnit(CurrencyUnit.getInstance("LKR"), "MoneyUnit.LKR");
LRD = new MoneyUnit(CurrencyUnit.getInstance("LRD"), "MoneyUnit.LRD");
LSL = new MoneyUnit(CurrencyUnit.getInstance("LSL"), "MoneyUnit.LSL");
LYD = new MoneyUnit(CurrencyUnit.getInstance("LYD"), "MoneyUnit.LYD");
MAD = new MoneyUnit(CurrencyUnit.getInstance("MAD"), "MoneyUnit.MAD");
MDL = new MoneyUnit(CurrencyUnit.getInstance("MDL"), "MoneyUnit.MDL");
MGA = new MoneyUnit(CurrencyUnit.getInstance("MGA"), "MoneyUnit.MGA");
MKD = new MoneyUnit(CurrencyUnit.getInstance("MKD"), "MoneyUnit.MKD");
MMK = new MoneyUnit(CurrencyUnit.getInstance("MMK"), "MoneyUnit.MMK");
MNT = new MoneyUnit(CurrencyUnit.getInstance("MNT"), "MoneyUnit.MNT");
MOP = new MoneyUnit(CurrencyUnit.getInstance("MOP"), "MoneyUnit.MOP");
MRO = new MoneyUnit(CurrencyUnit.getInstance("MRO"), "MoneyUnit.MRO");
MUR = new MoneyUnit(CurrencyUnit.getInstance("MUR"), "MoneyUnit.MUR");
MVR = new MoneyUnit(CurrencyUnit.getInstance("MVR"), "MoneyUnit.MVR");
MWK = new MoneyUnit(CurrencyUnit.getInstance("MWK"), "MoneyUnit.MWK");
MXN = new MoneyUnit(CurrencyUnit.getInstance("MXN"), "MoneyUnit.MXN");
MXV = new MoneyUnit(CurrencyUnit.getInstance("MXV"), "MoneyUnit.MXV");
MYR = new MoneyUnit(CurrencyUnit.getInstance("MYR"), "MoneyUnit.MYR");
MZN = new MoneyUnit(CurrencyUnit.getInstance("MZN"), "MoneyUnit.MZN");
NAD = new MoneyUnit(CurrencyUnit.getInstance("NAD"), "MoneyUnit.NAD");
NGN = new MoneyUnit(CurrencyUnit.getInstance("NGN"), "MoneyUnit.NGN");
NIO = new MoneyUnit(CurrencyUnit.getInstance("NIO"), "MoneyUnit.NIO");
NOK = new MoneyUnit(CurrencyUnit.getInstance("NOK"), "MoneyUnit.NOK");
NPR = new MoneyUnit(CurrencyUnit.getInstance("NPR"), "MoneyUnit.NPR");
NZD = new MoneyUnit(CurrencyUnit.getInstance("NZD"), "MoneyUnit.NZD");
OMR = new MoneyUnit(CurrencyUnit.getInstance("OMR"), "MoneyUnit.OMR");
PAB = new MoneyUnit(CurrencyUnit.getInstance("PAB"), "MoneyUnit.PAB");
PEN = new MoneyUnit(CurrencyUnit.getInstance("PEN"), "MoneyUnit.PEN");
PGK = new MoneyUnit(CurrencyUnit.getInstance("PGK"), "MoneyUnit.PGK");
PHP = new MoneyUnit(CurrencyUnit.getInstance("PHP"), "MoneyUnit.PHP");
PKR = new MoneyUnit(CurrencyUnit.getInstance("PKR"), "MoneyUnit.PKR");
PLN = new MoneyUnit(CurrencyUnit.getInstance("PLN"), "MoneyUnit.PLN");
PYG = new MoneyUnit(CurrencyUnit.getInstance("PYG"), "MoneyUnit.PYG");
QAR = new MoneyUnit(CurrencyUnit.getInstance("QAR"), "MoneyUnit.QAR");
RON = new MoneyUnit(CurrencyUnit.getInstance("RON"), "MoneyUnit.RON");
RSD = new MoneyUnit(CurrencyUnit.getInstance("RSD"), "MoneyUnit.RSD");
RUB = new MoneyUnit(CurrencyUnit.getInstance("RUB"), "MoneyUnit.RUB");
RWF = new MoneyUnit(CurrencyUnit.getInstance("RWF"), "MoneyUnit.RWF");
SAR = new MoneyUnit(CurrencyUnit.getInstance("SAR"), "MoneyUnit.SAR");
SBD = new MoneyUnit(CurrencyUnit.getInstance("SBD"), "MoneyUnit.SBD");
SCR = new MoneyUnit(CurrencyUnit.getInstance("SCR"), "MoneyUnit.SCR");
SDG = new MoneyUnit(CurrencyUnit.getInstance("SDG"), "MoneyUnit.SDG");
SEK = new MoneyUnit(CurrencyUnit.getInstance("SEK"), "MoneyUnit.SEK");
SGD = new MoneyUnit(CurrencyUnit.getInstance("SGD"), "MoneyUnit.SGD");
SHP = new MoneyUnit(CurrencyUnit.getInstance("SHP"), "MoneyUnit.SHP");
SLL = new MoneyUnit(CurrencyUnit.getInstance("SLL"), "MoneyUnit.SLL");
SOS = new MoneyUnit(CurrencyUnit.getInstance("SOS"), "MoneyUnit.SOS");
SRD = new MoneyUnit(CurrencyUnit.getInstance("SRD"), "MoneyUnit.SRD");
SSP = new MoneyUnit(CurrencyUnit.getInstance("SSP"), "MoneyUnit.SSP");
STD = new MoneyUnit(CurrencyUnit.getInstance("STD"), "MoneyUnit.STD");
SVC = new MoneyUnit(CurrencyUnit.getInstance("SVC"), "MoneyUnit.SVC");
SYP = new MoneyUnit(CurrencyUnit.getInstance("SYP"), "MoneyUnit.SYP");
SZL = new MoneyUnit(CurrencyUnit.getInstance("SZL"), "MoneyUnit.SZL");
THB = new MoneyUnit(CurrencyUnit.getInstance("THB"), "MoneyUnit.THB");
TJS = new MoneyUnit(CurrencyUnit.getInstance("TJS"), "MoneyUnit.TJS");
TMT = new MoneyUnit(CurrencyUnit.getInstance("TMT"), "MoneyUnit.TMT");
TND = new MoneyUnit(CurrencyUnit.getInstance("TND"), "MoneyUnit.TND");
TOP = new MoneyUnit(CurrencyUnit.getInstance("TOP"), "MoneyUnit.TOP");
TRY = new MoneyUnit(CurrencyUnit.getInstance("TRY"), "MoneyUnit.TRY");
TTD = new MoneyUnit(CurrencyUnit.getInstance("TTD"), "MoneyUnit.TTD");
TWD = new MoneyUnit(CurrencyUnit.getInstance("TWD"), "MoneyUnit.TWD");
TZS = new MoneyUnit(CurrencyUnit.getInstance("TZS"), "MoneyUnit.TZS");
UAH = new MoneyUnit(CurrencyUnit.getInstance("UAH"), "MoneyUnit.UAH");
UGX = new MoneyUnit(CurrencyUnit.getInstance("UGX"), "MoneyUnit.UGX");
USD = new MoneyUnit(CurrencyUnit.getInstance("USD"), "MoneyUnit.USD");
USN = new MoneyUnit(CurrencyUnit.getInstance("USN"), "MoneyUnit.USN");
UYI = new MoneyUnit(CurrencyUnit.getInstance("UYI"), "MoneyUnit.UYI");
UYU = new MoneyUnit(CurrencyUnit.getInstance("UYU"), "MoneyUnit.UYU");
UZS = new MoneyUnit(CurrencyUnit.getInstance("UZS"), "MoneyUnit.UZS");
VEF = new MoneyUnit(CurrencyUnit.getInstance("VEF"), "MoneyUnit.VEF");
VND = new MoneyUnit(CurrencyUnit.getInstance("VND"), "MoneyUnit.VND");
VUV = new MoneyUnit(CurrencyUnit.getInstance("VUV"), "MoneyUnit.VUV");
WST = new MoneyUnit(CurrencyUnit.getInstance("WST"), "MoneyUnit.WST");
XAF = new MoneyUnit(CurrencyUnit.getInstance("XAF"), "MoneyUnit.XAF");
XAG = new MoneyUnit(CurrencyUnit.getInstance("XAG"), "MoneyUnit.XAG");
XAU = new MoneyUnit(CurrencyUnit.getInstance("XAU"), "MoneyUnit.XAU");
XBA = new MoneyUnit(CurrencyUnit.getInstance("XBA"), "MoneyUnit.XBA");
XBB = new MoneyUnit(CurrencyUnit.getInstance("XBB"), "MoneyUnit.XBB");
XBC = new MoneyUnit(CurrencyUnit.getInstance("XBC"), "MoneyUnit.XBC");
XBD = new MoneyUnit(CurrencyUnit.getInstance("XBD"), "MoneyUnit.XBD");
XCD = new MoneyUnit(CurrencyUnit.getInstance("XCD"), "MoneyUnit.XCD");
XDR = new MoneyUnit(CurrencyUnit.getInstance("XDR"), "MoneyUnit.XDR");
XOF = new MoneyUnit(CurrencyUnit.getInstance("XOF"), "MoneyUnit.XOF");
XPD = new MoneyUnit(CurrencyUnit.getInstance("XPD"), "MoneyUnit.XPD");
XPF = new MoneyUnit(CurrencyUnit.getInstance("XPF"), "MoneyUnit.XPF");
XPT = new MoneyUnit(CurrencyUnit.getInstance("XPT"), "MoneyUnit.XPT");
XSU = new MoneyUnit(CurrencyUnit.getInstance("XSU"), "MoneyUnit.XSU");
XTS = new MoneyUnit(CurrencyUnit.getInstance("XTS"), "MoneyUnit.XTS");
XUA = new MoneyUnit(CurrencyUnit.getInstance("XUA"), "MoneyUnit.XUA");
XXX = new MoneyUnit(CurrencyUnit.getInstance("XXX"), "MoneyUnit.XXX");
YER = new MoneyUnit(CurrencyUnit.getInstance("YER"), "MoneyUnit.YER");
ZAR = new MoneyUnit(CurrencyUnit.getInstance("ZAR"), "MoneyUnit.ZAR");
ZMW = new MoneyUnit(CurrencyUnit.getInstance("ZMW"), "MoneyUnit.ZMW");
ZWL = new MoneyUnit(CurrencyUnit.getInstance("ZWL"), "MoneyUnit.ZWL");
XBT = new MoneyUnit(CurrencyUnit.getInstance("XBT"), "MoneyUnit.XBT");
standardMoneyUnit = USD;
}
/**
* Define money unit.
* @param currencyUnit CurrencyUnit; the joda-money CurrencyUnit on which this djunits unit is based
* @param abbreviationKey String; the key to the locale file for the abbreviation of the unit
*/
private MoneyUnit(final CurrencyUnit currencyUnit, final String abbreviationKey)
{
super(abbreviationKey, UnitSystem.OTHER);
this.currencyUnit = currencyUnit;
this.codeNumber = currencyUnit.getNumericCode();
this.codeString = currencyUnit.getCode();
}
/**
* Build a user-defined money unit.
* @param currencyUnit CurrencyUnit; the joda-money CurrencyUnit on which this djunits unit is based
* @param name String; the long name of the unit
* @param abbreviation String; the abbreviation of the unit
*/
public MoneyUnit(final CurrencyUnit currencyUnit, final String name, final String abbreviation)
{
super(name, abbreviation, UnitSystem.OTHER);
this.currencyUnit = currencyUnit;
this.codeNumber = currencyUnit.getNumericCode();
this.codeString = currencyUnit.getCode();
}
/**
* Build a money unit based on another money unit with a conversion factor.
* @param currencyUnit CurrencyUnit; the joda-money CurrencyUnit on which this djunits unit is based
* @param abbreviationKey String; the key to the locale file for the abbreviation of the unit
* @param referenceUnit MoneyUnit; the unit to convert to
* @param scaleFactorToReferenceUnit double; multiply a value in this unit by the factor to convert to the given reference
* unit
*/
private MoneyUnit(final CurrencyUnit currencyUnit, final String abbreviationKey, final MoneyUnit referenceUnit,
final double scaleFactorToReferenceUnit)
{
super(abbreviationKey, UnitSystem.OTHER, referenceUnit, scaleFactorToReferenceUnit);
this.currencyUnit = currencyUnit;
this.codeNumber = currencyUnit.getNumericCode();
this.codeString = currencyUnit.getCode();
}
/**
* Build a user-defined money unit based on another money unit with a conversion factor.
* @param currencyUnit CurrencyUnit; the joda-money CurrencyUnit on which this djunits unit is based
* @param name String; the long name of the unit
* @param abbreviation String; the abbreviation of the unit
* @param referenceUnit MoneyUnit; the unit to convert to
* @param scaleFactorToReferenceUnit double; multiply a value in this unit by the factor to convert to the given reference
* unit
*/
public MoneyUnit(final CurrencyUnit currencyUnit, final String name, final String abbreviation,
final MoneyUnit referenceUnit, final double scaleFactorToReferenceUnit)
{
super(name, abbreviation, UnitSystem.OTHER, referenceUnit, scaleFactorToReferenceUnit);
this.currencyUnit = currencyUnit;
this.codeNumber = currencyUnit.getNumericCode();
this.codeString = currencyUnit.getCode();
}
/**
* @return the joda-money CurrencyUnit on which this djunits unit is based.
*/
public final CurrencyUnit getCurrencyUnit()
{
return this.currencyUnit;
}
/**
* Set the standard money unit to be used.
* @param moneyUnit MoneyUnit; the new standard money unit.
*/
public static final void setStandardUnit(final MoneyUnit moneyUnit)
{
standardMoneyUnit = moneyUnit;
MoneyPerAreaUnit.setStandardUnit(moneyUnit);
MoneyPerEnergyUnit.setStandardUnit(moneyUnit);
MoneyPerLengthUnit.setStandardUnit(moneyUnit);
MoneyPerMassUnit.setStandardUnit(moneyUnit);
MoneyPerDurationUnit.setStandardUnit(moneyUnit);
MoneyPerVolumeUnit.setStandardUnit(moneyUnit);
}
/** {@inheritDoc} */
@Override
public final MoneyUnit getStandardUnit()
{
return standardMoneyUnit;
}
/**
* @return the current standard money unit
*/
public static final MoneyUnit getStandardMoneyUnit()
{
return standardMoneyUnit;
}
/** {@inheritDoc} */
@Override
public final String getSICoefficientsString()
{
return "1";
}
/** {@inheritDoc} */
@Override
public int hashCode()
{
final int prime = 31;
int result = super.hashCode();
result = prime * result + this.codeNumber;
result = prime * result + ((this.codeString == null) ? 0 : this.codeString.hashCode());
return result;
}
/** {@inheritDoc} */
@SuppressWarnings("checkstyle:needbraces")
@Override
public boolean equals(final Object obj)
{
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
MoneyUnit other = (MoneyUnit) obj;
if (this.codeNumber != other.codeNumber)
return false;
if (this.codeString == null)
{
if (other.codeString != null)
return false;
}
else if (!this.codeString.equals(other.codeString))
return false;
return true;
}
/** {@inheritDoc} */
@SuppressWarnings("checkstyle:needbraces")
@Override
public boolean equalsIgnoreNaming(final Object obj)
{
// the difference lies in the codenumber.
if (this == obj)
return true;
if (getClass() != obj.getClass())
return false;
MoneyUnit other = (MoneyUnit) obj;
return (this.codeNumber == other.codeNumber);
}
}