public enum SDCalcType extends Enum<SDCalcType>
Enum Constant and Description |
---|
GRID_ADAPTIVE |
GRID_EXACT |
GRID_STEPPED_CONTINUOUS |
GRID_STEPPED_STOCHASTIC |
SMP_EULER |
SMP_FORWARD_EXPONENTIAL |
SMP_IMPLICIT_EULER |
SMP_RK4 |
SMP_SEMI_IMPLICIT_EULER |
Modifier and Type | Method and Description |
---|---|
BaseCalc |
getCalc(int trial,
SDRun sdr) |
static SDCalcType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SDCalcType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SDCalcType SMP_EULER
public static final SDCalcType SMP_SEMI_IMPLICIT_EULER
public static final SDCalcType SMP_IMPLICIT_EULER
public static final SDCalcType SMP_FORWARD_EXPONENTIAL
public static final SDCalcType SMP_RK4
public static final SDCalcType GRID_STEPPED_CONTINUOUS
public static final SDCalcType GRID_STEPPED_STOCHASTIC
public static final SDCalcType GRID_EXACT
public static final SDCalcType GRID_ADAPTIVE
public static SDCalcType[] values()
for (SDCalcType c : SDCalcType.values()) System.out.println(c);
public static SDCalcType 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 © 2020. All rights reserved.