Package com.github.oscerd.finnhub.model
Enum Exchange
- java.lang.Object
-
- java.lang.Enum<Exchange>
-
- com.github.oscerd.finnhub.model.Exchange
-
- All Implemented Interfaces:
Serializable,Comparable<Exchange>
public enum Exchange extends Enum<Exchange>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringcode()static ExchangevalueOf(String name)Returns the enum constant of this type with the specified name.static Exchange[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NYSE_EURONEXT_AMSTERDAM
public static final Exchange NYSE_EURONEXT_AMSTERDAM
-
ATHENS_EXCHANGE
public static final Exchange ATHENS_EXCHANGE
-
ASX
public static final Exchange ASX
-
BOLSA_DE_COMERCIO_DE_BUENOS_AIRES
public static final Exchange BOLSA_DE_COMERCIO_DE_BUENOS_AIRES
-
BOLSA_DE_VALORES_DE_COLOMBIA
public static final Exchange BOLSA_DE_VALORES_DE_COLOMBIA
-
BUDAPEST_STOCK_EXCHANGE
public static final Exchange BUDAPEST_STOCK_EXCHANGE
-
BOERSE_BERLIN
public static final Exchange BOERSE_BERLIN
-
STOCK_EXCHANGE_OF_THAILAND
public static final Exchange STOCK_EXCHANGE_OF_THAILAND
-
BSE_LTD
public static final Exchange BSE_LTD
-
NYSE_EURONEXT_BRUSSELS
public static final Exchange NYSE_EURONEXT_BRUSSELS
-
CANADIAN_NATIONAL_STOCK_EXCHANGE
public static final Exchange CANADIAN_NATIONAL_STOCK_EXCHANGE
-
NORDIC_EXCHANGE_COPENHAGEN
public static final Exchange NORDIC_EXCHANGE_COPENHAGEN
-
CARACAS_STOCK_EXCHANGE
public static final Exchange CARACAS_STOCK_EXCHANGE
-
DUBAI_FINANCIAL_MARKET
public static final Exchange DUBAI_FINANCIAL_MARKET
-
XETRA
public static final Exchange XETRA
-
BOERSE_DUSSELDORF
public static final Exchange BOERSE_DUSSELDORF
-
DEUTSCHE_BOERSE
public static final Exchange DEUTSCHE_BOERSE
-
NASDAQ_HELSINKI
public static final Exchange NASDAQ_HELSINKI
-
HONG_KONG_EXCHANGE
public static final Exchange HONG_KONG_EXCHANGE
-
HANSEATISCHE_WERTPAPIERBOERSE_HAMBURG
public static final Exchange HANSEATISCHE_WERTPAPIERBOERSE_HAMBURG
-
NASDAQ_ICELAND
public static final Exchange NASDAQ_ICELAND
-
IRISH_STOCK_EXCHANGE
public static final Exchange IRISH_STOCK_EXCHANGE
-
BORSA_ISTANBUL
public static final Exchange BORSA_ISTANBUL
-
INDONESIA_STOCK_EXCHANGE
public static final Exchange INDONESIA_STOCK_EXCHANGE
-
JOHANNESBURG_STOCK_EXCHANGE
public static final Exchange JOHANNESBURG_STOCK_EXCHANGE
-
BURSA_MALAYSIA
public static final Exchange BURSA_MALAYSIA
-
KOSDAQ_KOREA_EXCHANGE
public static final Exchange KOSDAQ_KOREA_EXCHANGE
-
STOCK_MARKET_KOREA_EXCHANGE
public static final Exchange STOCK_MARKET_KOREA_EXCHANGE
-
LONDON_STOCK_EXCHANGE
public static final Exchange LONDON_STOCK_EXCHANGE
-
NYSE_EURONEXT_LISBON
public static final Exchange NYSE_EURONEXT_LISBON
-
BOLSA_DE_MADRID
public static final Exchange BOLSA_DE_MADRID
-
MOSCOW_EXCHANGE
public static final Exchange MOSCOW_EXCHANGE
-
ITALIAN_STOCK_EXCHANGE
public static final Exchange ITALIAN_STOCK_EXCHANGE
-
BOERSE_MUNCHEN
public static final Exchange BOERSE_MUNCHEN
-
BOELSA_MEXICANA_DE_VALORES
public static final Exchange BOELSA_MEXICANA_DE_VALORES
-
AEQUITAS_NEO_EXCHANGE
public static final Exchange AEQUITAS_NEO_EXCHANGE
-
NATIONAL_STOCK_EXCHANGE_OF_INDIA
public static final Exchange NATIONAL_STOCK_EXCHANGE_OF_INDIA
-
NEW_ZEALANDA_EXCHANGE_LTD
public static final Exchange NEW_ZEALANDA_EXCHANGE_LTD
-
OSLO_BORS
public static final Exchange OSLO_BORS
-
NYSE_EURONEXT_PARIS
public static final Exchange NYSE_EURONEXT_PARIS
-
PRAGUE_STOCK_EXCHANGE
public static final Exchange PRAGUE_STOCK_EXCHANGE
-
QATAR_STOCK_EXCHANGE
public static final Exchange QATAR_STOCK_EXCHANGE
-
NASDAQ_RIGA
public static final Exchange NASDAQ_RIGA
-
BRAZIL_BOLSA_SAO_PAULO
public static final Exchange BRAZIL_BOLSA_SAO_PAULO
-
BOERSE_STUTTGART
public static final Exchange BOERSE_STUTTGART
-
SINGAPORE_EXCHANGE
public static final Exchange SINGAPORE_EXCHANGE
-
SANTIAGO_STOCK_EXCHANGE
public static final Exchange SANTIAGO_STOCK_EXCHANGE
-
SAUDI_STOCK_EXCHANGE
public static final Exchange SAUDI_STOCK_EXCHANGE
-
SHANGHAI_STOCK_EXCHANGE
public static final Exchange SHANGHAI_STOCK_EXCHANGE
-
NASDAQ_NORDIC
public static final Exchange NASDAQ_NORDIC
-
SWISS_EXCHANGE
public static final Exchange SWISS_EXCHANGE
-
SHENZHEN_STOCK_EXCHANGE
public static final Exchange SHENZHEN_STOCK_EXCHANGE
-
TOKIO_STOCK_EXCHANGE
public static final Exchange TOKIO_STOCK_EXCHANGE
-
TEL_AVIV_STOCK_EXCHANGE
public static final Exchange TEL_AVIV_STOCK_EXCHANGE
-
NASDAQ_TALLIN
public static final Exchange NASDAQ_TALLIN
-
TORONTO_STOCK_EXCHANGE
public static final Exchange TORONTO_STOCK_EXCHANGE
-
TAIWAN_STOCK_EXCHANGE
public static final Exchange TAIWAN_STOCK_EXCHANGE
-
US_EXCHANGES
public static final Exchange US_EXCHANGES
-
TSX_VENTURE_EXCHANGE
public static final Exchange TSX_VENTURE_EXCHANGE
-
VIENNA_STOCK_EXCHANGE
public static final Exchange VIENNA_STOCK_EXCHANGE
-
VIETNAM_EXCHANGES
public static final Exchange VIETNAM_EXCHANGES
-
NASDAQ_VILNIUS
public static final Exchange NASDAQ_VILNIUS
-
WARSAW_STOCK_EXCHANGES
public static final Exchange WARSAW_STOCK_EXCHANGES
-
-
Method Detail
-
values
public static Exchange[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Exchange c : Exchange.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Exchange valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
code
public String code()
-
-