public static enum MechSystemSolver.Integrator extends java.lang.Enum<MechSystemSolver.Integrator>
Enum Constant and Description |
---|
BackwardEuler |
ConstrainedBackwardEuler |
ConstrainedForwardEuler |
ForwardEuler |
FullBackwardEuler |
RungeKutta4 |
StaticIncremental |
StaticIncrementalStep |
StaticLineSearch |
SymplecticEuler |
Trapezoidal |
Modifier and Type | Method and Description |
---|---|
static MechSystemSolver.Integrator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MechSystemSolver.Integrator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MechSystemSolver.Integrator ForwardEuler
public static final MechSystemSolver.Integrator BackwardEuler
public static final MechSystemSolver.Integrator SymplecticEuler
public static final MechSystemSolver.Integrator RungeKutta4
public static final MechSystemSolver.Integrator ConstrainedForwardEuler
public static final MechSystemSolver.Integrator ConstrainedBackwardEuler
public static final MechSystemSolver.Integrator FullBackwardEuler
public static final MechSystemSolver.Integrator Trapezoidal
public static final MechSystemSolver.Integrator StaticIncrementalStep
public static final MechSystemSolver.Integrator StaticIncremental
public static final MechSystemSolver.Integrator StaticLineSearch
public static MechSystemSolver.Integrator[] values()
for (MechSystemSolver.Integrator c : MechSystemSolver.Integrator.values()) System.out.println(c);
public static MechSystemSolver.Integrator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null