public static enum FMIScalarVariable.Alias extends java.lang.Enum<FMIScalarVariable.Alias>
Enum Constant and Description |
---|
alias
This is an alias variable, use the valueReference handle
to set or get the actual value.
|
negatedAlias
This is an alias value, but the value returned must be
negated.
|
noAlias
This is not an alias (the default).
|
Modifier and Type | Method and Description |
---|---|
static FMIScalarVariable.Alias |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FMIScalarVariable.Alias[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FMIScalarVariable.Alias alias
public static final FMIScalarVariable.Alias negatedAlias
public static final FMIScalarVariable.Alias noAlias
public static FMIScalarVariable.Alias[] values()
for (FMIScalarVariable.Alias c : FMIScalarVariable.Alias.values()) System.out.println(c);
public static FMIScalarVariable.Alias 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