public static enum IFinancialInstrument.Type extends Enum<IFinancialInstrument.Type>
Modifier and Type | Method and Description |
---|---|
static IFinancialInstrument.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IFinancialInstrument.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IFinancialInstrument.Type FOREX
public static final IFinancialInstrument.Type CFD
public static final IFinancialInstrument.Type METAL
public static IFinancialInstrument.Type[] values()
for (IFinancialInstrument.Type c : IFinancialInstrument.Type.values()) System.out.println(c);
public static IFinancialInstrument.Type 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 nullCopyright © 2016. All rights reserved.