Package iofXml.v3
Class Leg
- java.lang.Object
-
- iofXml.v3.Leg
-
public class Leg extends java.lang.Object
Defines 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>
-
-
Field Summary
Fields Modifier and Type Field Description protected Extensions
extensions
protected java.math.BigInteger
maxNumberOfCompetitors
protected java.math.BigInteger
minNumberOfCompetitors
protected java.lang.String
name
-
Constructor Summary
Constructors Constructor Description Leg()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Extensions
getExtensions()
Gets the value of the extensions property.java.math.BigInteger
getMaxNumberOfCompetitors()
Gets the value of the maxNumberOfCompetitors property.java.math.BigInteger
getMinNumberOfCompetitors()
Gets the value of the minNumberOfCompetitors property.java.lang.String
getName()
Gets the value of the name property.void
setExtensions(Extensions value)
Sets the value of the extensions property.void
setMaxNumberOfCompetitors(java.math.BigInteger value)
Sets the value of the maxNumberOfCompetitors property.void
setMinNumberOfCompetitors(java.math.BigInteger value)
Sets the value of the minNumberOfCompetitors property.void
setName(java.lang.String value)
Sets the value of the name property.
-
-
-
Field Detail
-
name
protected java.lang.String name
-
extensions
protected Extensions extensions
-
minNumberOfCompetitors
protected java.math.BigInteger minNumberOfCompetitors
-
maxNumberOfCompetitors
protected java.math.BigInteger maxNumberOfCompetitors
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getExtensions
public Extensions getExtensions()
Gets the value of the extensions property.- Returns:
- possible object is
Extensions
-
setExtensions
public void setExtensions(Extensions value)
Sets the value of the extensions property.- Parameters:
value
- allowed object isExtensions
-
getMinNumberOfCompetitors
public java.math.BigInteger getMinNumberOfCompetitors()
Gets the value of the minNumberOfCompetitors property.- Returns:
- possible object is
BigInteger
-
setMinNumberOfCompetitors
public void setMinNumberOfCompetitors(java.math.BigInteger value)
Sets the value of the minNumberOfCompetitors property.- Parameters:
value
- allowed object isBigInteger
-
getMaxNumberOfCompetitors
public java.math.BigInteger getMaxNumberOfCompetitors()
Gets the value of the maxNumberOfCompetitors property.- Returns:
- possible object is
BigInteger
-
setMaxNumberOfCompetitors
public void setMaxNumberOfCompetitors(java.math.BigInteger value)
Sets the value of the maxNumberOfCompetitors property.- Parameters:
value
- allowed object isBigInteger
-
-