Enumeration LightMode

Definition of the light mode.

Used in:
LightState
Enumeration Literals
  Name Applied Stereotypes Description
  on Light is switched on.
  off Light is switched off.
  flashing Light is flashing. Therefore, flashingOnDuration and flashingOffDuration have to be set.
XSD 1.3 Representation


<xsd:simpleType name="LightMode">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="on"/>
<xsd:enumeration value="off"/>
<xsd:enumeration value="flashing"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD