Enumeration RouteStrategy

Strategy for path selection between waypoints in a route.

Used in:
Waypoint
Enumeration Literals
  Name Applied Stereotypes Description
  fastest Fastest route.
  leastIntersections Route with least number of intersections.
  random Random route.
  shortest Shortest route.
XSD 1.3 Representation


<xsd:simpleType name="RouteStrategy">
<xsd:union>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="fastest"/>
<xsd:enumeration value="leastIntersections"/>
<xsd:enumeration value="random"/>
<xsd:enumeration value="shortest"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType>
<xsd:restriction base="parameter"/>
</xsd:simpleType>
</xsd:union>
</xsd:simpleType>

To XSD