Package iofXml.v3
Class Leg
-
- All Implemented Interfaces:
public class LegDefines extra information for a relay leg.
Java class for Leg complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Leg"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/> </sequence> <attribute name="minNumberOfCompetitors" type="{http://www.w3.org/2001/XMLSchema}integer" default="1" /> <attribute name="maxNumberOfCompetitors" type="{http://www.w3.org/2001/XMLSchema}integer" default="1" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Leg()
-
Method Summary
Modifier and Type Method Description StringgetName()The name of the leg, if not sequentially named. voidsetName(String value)Sets the value of the name property. ExtensionsgetExtensions()Container element for custom elements from other schemas. voidsetExtensions(Extensions value)Sets the value of the extensions property. BigIntegergetMinNumberOfCompetitors()The minimum number of competitors in case of a parallel leg. voidsetMinNumberOfCompetitors(BigInteger value)Sets the value of the minNumberOfCompetitors property. BigIntegergetMaxNumberOfCompetitors()The maximum number of competitors in case of a parallel leg. voidsetMaxNumberOfCompetitors(BigInteger value)Sets the value of the maxNumberOfCompetitors property. -
-
Method Detail
-
getName
String getName()
The name of the leg, if not sequentially named.
- Returns:
possibleobject is String
-
setName
void setName(String value)
Sets the value of the name property.
- Parameters:
value- allowed object is String
-
getExtensions
Extensions getExtensions()
Container element for custom elements from other schemas.
- Returns:
possibleobject is Extensions
-
setExtensions
void setExtensions(Extensions value)
Sets the value of the extensions property.
- Parameters:
value- allowed object is Extensions
-
getMinNumberOfCompetitors
BigInteger getMinNumberOfCompetitors()
The minimum number of competitors in case of a parallel leg.
- Returns:
possibleobject is BigInteger
-
setMinNumberOfCompetitors
void setMinNumberOfCompetitors(BigInteger value)
Sets the value of the minNumberOfCompetitors property.
- Parameters:
value- allowed object is BigInteger
-
getMaxNumberOfCompetitors
BigInteger getMaxNumberOfCompetitors()
The maximum number of competitors in case of a parallel leg.
- Returns:
possibleobject is BigInteger
-
setMaxNumberOfCompetitors
void setMaxNumberOfCompetitors(BigInteger value)
Sets the value of the maxNumberOfCompetitors property.
- Parameters:
value- allowed object is BigInteger
-
-
-
-