public enum InstrumentTypeEnum extends java.lang.Enum<InstrumentTypeEnum>
Enum Constant and Description |
---|
AKTIEN
Typ Aktie
|
ANLEIHEN
Typ Anleihe
|
ETF_ETP
Typ ETF/ETP
|
FONDS
Typ Fond
|
INDIZES
Typ Index
|
ROHSTOFFE
Typ Rohstoffe
|
WAEHRUNG
Typ Währung
|
ZERTIFIKATE
Typ Zertifikat
|
Modifier and Type | Method and Description |
---|---|
static InstrumentTypeEnum |
getInstrumentType(java.lang.String typeName)
Liefert InstrumentTyp zu einem Namen
|
java.lang.String |
getName()
Liefert den InstrumentTypNamen
|
java.lang.String |
getUrl()
Liefert die URL
|
static java.lang.String |
getUrl(java.lang.String typeName)
Liefert die URL eines InstrumentTypNames.
|
static InstrumentTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstrumentTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstrumentTypeEnum AKTIEN
public static final InstrumentTypeEnum ANLEIHEN
public static final InstrumentTypeEnum ETF_ETP
public static final InstrumentTypeEnum INDIZES
public static final InstrumentTypeEnum FONDS
public static final InstrumentTypeEnum ROHSTOFFE
public static final InstrumentTypeEnum WAEHRUNG
public static final InstrumentTypeEnum ZERTIFIKATE
public static InstrumentTypeEnum[] values()
for (InstrumentTypeEnum c : InstrumentTypeEnum.values()) System.out.println(c);
public static InstrumentTypeEnum valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static InstrumentTypeEnum getInstrumentType(java.lang.String typeName)
typeName
- der InstrumentTypNamepublic static java.lang.String getUrl(java.lang.String typeName)
typeName
- InstrumentTypNamepublic java.lang.String getName()
public java.lang.String getUrl()