public static enum ContinuousState.IntegMethod extends java.lang.Enum<ContinuousState.IntegMethod>
| Enum Constant and Description |
|---|
EULER |
RUNGEKUTTA2 |
RUNGEKUTTA4 |
| Modifier and Type | Method and Description |
|---|---|
static ContinuousState.IntegMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ContinuousState.IntegMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContinuousState.IntegMethod EULER
public static final ContinuousState.IntegMethod RUNGEKUTTA2
public static final ContinuousState.IntegMethod RUNGEKUTTA4
public static ContinuousState.IntegMethod[] values()
for (ContinuousState.IntegMethod c : ContinuousState.IntegMethod.values()) System.out.println(c);
public static ContinuousState.IntegMethod 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 nullTo submit a bug or ask questions, send an e-mail to Pierre L'Ecuyer.