public static enum FinancialMarket.EvaluationContext extends Enum<FinancialMarket.EvaluationContext>
Enum Constant and Description |
---|
DEFINITION |
EQUILIBRIUM |
OPINIONATED |
Modifier and Type | Method and Description |
---|---|
static FinancialMarket.EvaluationContext |
getInstance(String name) |
static FinancialMarket.EvaluationContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FinancialMarket.EvaluationContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FinancialMarket.EvaluationContext DEFINITION
public static final FinancialMarket.EvaluationContext EQUILIBRIUM
public static final FinancialMarket.EvaluationContext OPINIONATED
public static FinancialMarket.EvaluationContext[] values()
for (FinancialMarket.EvaluationContext c : FinancialMarket.EvaluationContext.values()) System.out.println(c);
public static FinancialMarket.EvaluationContext 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 static FinancialMarket.EvaluationContext getInstance(String name)