public enum StockExchangeCode extends Enum<StockExchangeCode>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="ASE"/> <enumeration value="NYS"/> <enumeration value="NMS"/> <enumeration value="LSE"/> <enumeration value="FRA"/> <enumeration value="GER"/> <enumeration value="PAR"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AMERICAN_STOCK_EXCHANGE |
EURONEXT_PARIS |
FRANKFURT_STOCK_EXCHANGE |
LONDON_STOCK_EXCHANGE |
NASDAQ |
NEWYORK_STOCK_EXCHANGE |
XETRA_TRADING_PLATFORM |
Modifier and Type | Method and Description |
---|---|
static StockExchangeCode |
fromValue(String v) |
String |
value() |
static StockExchangeCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StockExchangeCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StockExchangeCode AMERICAN_STOCK_EXCHANGE
public static final StockExchangeCode NEWYORK_STOCK_EXCHANGE
public static final StockExchangeCode NASDAQ
public static final StockExchangeCode LONDON_STOCK_EXCHANGE
public static final StockExchangeCode FRANKFURT_STOCK_EXCHANGE
public static final StockExchangeCode XETRA_TRADING_PLATFORM
public static final StockExchangeCode EURONEXT_PARIS
public static StockExchangeCode[] values()
for (StockExchangeCode c : StockExchangeCode.values()) System.out.println(c);
public static StockExchangeCode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String value()
public static StockExchangeCode fromValue(String v)
Apache Camel