public static enum Swaption.ValueUnit extends Enum<Swaption.ValueUnit>
| Enum Constant and Description |
|---|
INTEGRATEDLOGNORMALVARIANCE
Deprecated.
Use INTEGRATEDVARIANCELOGNORMAL instead.
|
INTEGRATEDNORMALVARIANCE
Deprecated.
Use INTEGRATEDVARIANCENORMAL instead.
|
INTEGRATEDVARIANCE
Deprecated.
Use INTEGRATEDVARIANCELOGNORMAL instead
|
INTEGRATEDVARIANCELOGNORMAL
Returns the Black-Scholes implied integrated variance, i.e., σ2 T
|
INTEGRATEDVARIANCENORMAL
Returns the Bachelier implied integrated variance, i.e., σ2 T
|
VALUE
Returns the value of the swaption
|
VOLATILITY
Deprecated.
Use VOLATILITYLOGNORMAL instead
|
VOLATILITYLOGNORMAL
Returns the Black-Scholes implied volatility, i.e., σ
|
VOLATILITYNORMAL
Returns the Bachelier implied volatility, i.e., σ
|
VOLATILITYNORMALATM
The Bachelier implied volatility, assuming an ATM option.
|
| Modifier and Type | Method and Description |
|---|---|
static Swaption.ValueUnit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Swaption.ValueUnit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Swaption.ValueUnit VALUE
public static final Swaption.ValueUnit INTEGRATEDVARIANCELOGNORMAL
public static final Swaption.ValueUnit INTEGRATEDLOGNORMALVARIANCE
public static final Swaption.ValueUnit VOLATILITYLOGNORMAL
public static final Swaption.ValueUnit INTEGRATEDVARIANCENORMAL
public static final Swaption.ValueUnit INTEGRATEDNORMALVARIANCE
public static final Swaption.ValueUnit VOLATILITYNORMAL
public static final Swaption.ValueUnit INTEGRATEDVARIANCE
public static final Swaption.ValueUnit VOLATILITY
public static final Swaption.ValueUnit VOLATILITYNORMALATM
public static Swaption.ValueUnit[] values()
for (Swaption.ValueUnit c : Swaption.ValueUnit.values()) System.out.println(c);
public static Swaption.ValueUnit 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.