Enum ComponentVariableFmi2Api.FmiFunctionType
- java.lang.Object
-
- java.lang.Enum<ComponentVariableFmi2Api.FmiFunctionType>
-
- org.intocps.maestro.framework.fmi2.api.mabl.variables.ComponentVariableFmi2Api.FmiFunctionType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ComponentVariableFmi2Api.FmiFunctionType>
- Enclosing class:
- ComponentVariableFmi2Api
public static enum ComponentVariableFmi2Api.FmiFunctionType extends java.lang.Enum<ComponentVariableFmi2Api.FmiFunctionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENTERINITIALIZATIONMODEEXITINITIALIZATIONMODEGETSETSETUPEXPERIMENT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ComponentVariableFmi2Api.FmiFunctionTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ComponentVariableFmi2Api.FmiFunctionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET
public static final ComponentVariableFmi2Api.FmiFunctionType GET
-
SET
public static final ComponentVariableFmi2Api.FmiFunctionType SET
-
ENTERINITIALIZATIONMODE
public static final ComponentVariableFmi2Api.FmiFunctionType ENTERINITIALIZATIONMODE
-
EXITINITIALIZATIONMODE
public static final ComponentVariableFmi2Api.FmiFunctionType EXITINITIALIZATIONMODE
-
SETUPEXPERIMENT
public static final ComponentVariableFmi2Api.FmiFunctionType SETUPEXPERIMENT
-
-
Method Detail
-
values
public static ComponentVariableFmi2Api.FmiFunctionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ComponentVariableFmi2Api.FmiFunctionType c : ComponentVariableFmi2Api.FmiFunctionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComponentVariableFmi2Api.FmiFunctionType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-