public enum AssetClass extends Enum<AssetClass>
Enum Constant and Description |
---|
CASH_EQUIVALENTS
money market instruments
|
COMMODITIES |
EQUITIES
stocks
|
FIXED_INCOME
bonds
|
OTHER |
REAL_ESTATE |
Modifier and Type | Method and Description |
---|---|
static AssetClass |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssetClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssetClass CASH_EQUIVALENTS
public static final AssetClass COMMODITIES
public static final AssetClass EQUITIES
public static final AssetClass FIXED_INCOME
public static final AssetClass OTHER
public static final AssetClass REAL_ESTATE
public static AssetClass[] values()
for (AssetClass c : AssetClass.values()) System.out.println(c);
public static AssetClass 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 null