public enum ODESolverType extends Enum<ODESolverType>
| Enum Constant and Description |
|---|
Euler |
RungeKutta2 |
RungeKutta4 |
RungeKutta4Tableau |
RungeKuttaCashKarp |
RungeKuttaCashKarp4 |
RungeKuttaCashKarp5 |
RungeKuttaDormandPrince |
RungeKuttaDormandPrince4 |
RungeKuttaDormandPrince5 |
RungeKuttaFehlberg |
RungeKuttaFehlberg4 |
RungeKuttaFehlberg5 |
| Modifier and Type | Method and Description |
|---|---|
static ODESolverType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ODESolverType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ODESolverType Euler
public static final ODESolverType RungeKutta4
public static final ODESolverType RungeKutta4Tableau
public static final ODESolverType RungeKuttaCashKarp
public static final ODESolverType RungeKuttaCashKarp4
public static final ODESolverType RungeKuttaCashKarp5
public static final ODESolverType RungeKuttaFehlberg
public static final ODESolverType RungeKuttaFehlberg4
public static final ODESolverType RungeKuttaFehlberg5
public static final ODESolverType RungeKutta2
public static final ODESolverType RungeKuttaDormandPrince
public static final ODESolverType RungeKuttaDormandPrince4
public static final ODESolverType RungeKuttaDormandPrince5
public static ODESolverType[] values()
for (ODESolverType c : ODESolverType.values()) System.out.println(c);
public static ODESolverType 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 © 2017. All Rights Reserved.