public static enum HestonModel.Scheme extends Enum<HestonModel.Scheme>
| Enum Constant and Description |
|---|
FULL_TRUNCATION
Full truncation scheme, that is V is replaced by Math.max(V,0), where V denotes the current realization of V(t).
|
REFLECTION
Reflection scheme, that is V is replaced by Math.abs(V), where V denotes the current realization of V(t).
|
| Modifier and Type | Method and Description |
|---|---|
static HestonModel.Scheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HestonModel.Scheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HestonModel.Scheme REFLECTION
public static final HestonModel.Scheme FULL_TRUNCATION
public static HestonModel.Scheme[] values()
for (HestonModel.Scheme c : HestonModel.Scheme.values()) System.out.println(c);
public static HestonModel.Scheme 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 © 2019. All rights reserved.