All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xeiam.xchange.currency.CurrencyPair Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
/**
 * Copyright (C) 2012 - 2013 Xeiam LLC http://xeiam.com
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is furnished to do
 * so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package com.xeiam.xchange.currency;

/**
 * 

* Value object to provide the following to API: *

*
    *
  • Provision of major currency symbol pairs (EUR/USD, GBP/USD etc)
  • *
  • Provision of arbitrary symbol pairs for exchange index trading, notional currencies etc
  • *
*

* Symbol pairs are quoted, for example, as EUR/USD 1.25 such that 1 EUR can be purchased with 1.25 USD *

*/ public class CurrencyPair { // Provide some standard major symbols public static final CurrencyPair EUR_USD = new CurrencyPair("EUR"); public static final CurrencyPair GBP_USD = new CurrencyPair("GBP"); public static final CurrencyPair USD_JPY = new CurrencyPair("USD", "JPY"); public static final CurrencyPair USD_CHF = new CurrencyPair("USD", "CHF"); public static final CurrencyPair USD_AUD = new CurrencyPair("USD", "AUD"); public static final CurrencyPair USD_CAD = new CurrencyPair("USD", "CAD"); // Provide some courtesy BTC major symbols public static final CurrencyPair BTC_USD = new CurrencyPair("BTC"); public static final CurrencyPair BTC_GBP = new CurrencyPair("BTC", "GBP"); public static final CurrencyPair BTC_EUR = new CurrencyPair("BTC", "EUR"); public static final CurrencyPair BTC_JPY = new CurrencyPair("BTC", "JPY"); public static final CurrencyPair BTC_CHF = new CurrencyPair("BTC", "CHF"); public static final CurrencyPair BTC_AUD = new CurrencyPair("BTC", "AUD"); public static final CurrencyPair BTC_CAD = new CurrencyPair("BTC", "CAD"); public static final CurrencyPair BTC_CNY = new CurrencyPair("BTC", "CNY"); public static final CurrencyPair BTC_DKK = new CurrencyPair("BTC", "DKK"); public static final CurrencyPair BTC_HKD = new CurrencyPair("BTC", "HKD"); public static final CurrencyPair BTC_NZD = new CurrencyPair("BTC", "NZD"); public static final CurrencyPair BTC_PLN = new CurrencyPair("BTC", "PLN"); public static final CurrencyPair BTC_RUB = new CurrencyPair("BTC", "RUB"); public static final CurrencyPair BTC_SEK = new CurrencyPair("BTC", "SEK"); public static final CurrencyPair BTC_SGD = new CurrencyPair("BTC", "SGD"); public static final CurrencyPair BTC_THB = new CurrencyPair("BTC", "THB"); public static final CurrencyPair BTC_RUR = new CurrencyPair("BTC", "RUR"); public static final CurrencyPair LTC_BTC = new CurrencyPair("LTC", "BTC"); public static final CurrencyPair LTC_USD = new CurrencyPair("LTC", "USD"); public static final CurrencyPair LTC_RUR = new CurrencyPair("LTC", "RUR"); public static final CurrencyPair NMC_BTC = new CurrencyPair("NMC", "BTC"); public static final CurrencyPair USD_RUR = new CurrencyPair("USD", "RUR"); public static final CurrencyPair NVC_BTC = new CurrencyPair("NVC", "BTC"); public static final CurrencyPair TRC_BTC = new CurrencyPair("TRC", "BTC"); public static final CurrencyPair PPC_BTC = new CurrencyPair("PPC", "BTC"); public final String baseCurrency; public final String counterCurrency; /** *

* Reduced constructor using the global reserve currency symbol (USD) as the default counter *

* * @param baseCurrency The base symbol (single unit) */ public CurrencyPair(String baseCurrency) { this(baseCurrency, "USD"); } /** *

* Full constructor *

* * @param baseCurrency The base symbol (single unit) * @param counterCurrency The counter symbol (multiple units) */ public CurrencyPair(String baseCurrency, String counterCurrency) { this.baseCurrency = baseCurrency; this.counterCurrency = counterCurrency; } @Override public String toString() { return baseCurrency + "/" + counterCurrency; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((baseCurrency == null) ? 0 : baseCurrency.hashCode()); result = prime * result + ((counterCurrency == null) ? 0 : counterCurrency.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } CurrencyPair other = (CurrencyPair) obj; if (baseCurrency == null) { if (other.baseCurrency != null) { return false; } } else if (!baseCurrency.equals(other.baseCurrency)) { return false; } if (counterCurrency == null) { if (other.counterCurrency != null) { return false; } } else if (!counterCurrency.equals(other.counterCurrency)) { return false; } return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy