class'Integer()'
Integer()
Extends from ModelicaReference.Icons.Information (Icon for general information packages).
Information
Returns ordinal number of enumeration
Syntax
Integer(<expression of enumeration type>)
Description
Returns the ordinal number of the enumeration value E.enumvalue, to which the expression is evaluated, where Integer(E.e1) =1, Integer(E.en) =size(E), for an enumeration type E=enumeration(e1, ..., en).
Examples
type Size = enumeration(small, medium, large, xlarge); Size tshirt = Size.large; Integer tshirtValue = Integer(tshirt); // = 3