public static enum LogNormalProcess.Scheme extends Enum<LogNormalProcess.Scheme>
| Enum Constant and Description |
|---|
EULER |
PREDICTOR_USING_EULERSTEP |
PREDICTOR_USING_LASTREALIZATION |
| Modifier and Type | Method and Description |
|---|---|
static LogNormalProcess.Scheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogNormalProcess.Scheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogNormalProcess.Scheme EULER
public static final LogNormalProcess.Scheme PREDICTOR_USING_EULERSTEP
public static final LogNormalProcess.Scheme PREDICTOR_USING_LASTREALIZATION
public static LogNormalProcess.Scheme[] values()
for (LogNormalProcess.Scheme c : LogNormalProcess.Scheme.values()) System.out.println(c);
public static LogNormalProcess.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 © 2015. All rights reserved.