public static enum FMIScalarVariable.Initial extends java.lang.Enum<FMIScalarVariable.Initial>
Enum Constant and Description |
---|
approx
The variable is an iteration variable of an algebraic
loop and the iteration at initialization starts with the start value.
|
calculated
The variable is calculated from other variables during
initialization.
|
exact
The variable is initialized with the start value (provided under Real,
Integer, Boolean, String or Enumeration".
|
notPresent
Not present.
|
Modifier and Type | Method and Description |
---|---|
static FMIScalarVariable.Initial |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FMIScalarVariable.Initial[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FMIScalarVariable.Initial approx
public static final FMIScalarVariable.Initial calculated
public static final FMIScalarVariable.Initial exact
public static final FMIScalarVariable.Initial notPresent
public static FMIScalarVariable.Initial[] values()
for (FMIScalarVariable.Initial c : FMIScalarVariable.Initial.values()) System.out.println(c);
public static FMIScalarVariable.Initial 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