Enum Fmi2SimulationEnvironment.Relation.Direction
- java.lang.Object
-
- java.lang.Enum<Fmi2SimulationEnvironment.Relation.Direction>
-
- org.intocps.maestro.framework.fmi2.Fmi2SimulationEnvironment.Relation.Direction
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Fmi2SimulationEnvironment.Relation.Direction>
- Enclosing class:
- Fmi2SimulationEnvironment.Relation
public static enum Fmi2SimulationEnvironment.Relation.Direction extends java.lang.Enum<Fmi2SimulationEnvironment.Relation.Direction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description InputToOutputOutputToInput
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Fmi2SimulationEnvironment.Relation.DirectionvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Fmi2SimulationEnvironment.Relation.Direction[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OutputToInput
public static final Fmi2SimulationEnvironment.Relation.Direction OutputToInput
-
InputToOutput
public static final Fmi2SimulationEnvironment.Relation.Direction InputToOutput
-
-
Method Detail
-
values
public static Fmi2SimulationEnvironment.Relation.Direction[] 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 (Fmi2SimulationEnvironment.Relation.Direction c : Fmi2SimulationEnvironment.Relation.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Fmi2SimulationEnvironment.Relation.Direction 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
-
-