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