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