Class PersonRaceStart
Java class for PersonRaceStart complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="PersonRaceStart">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="BibNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
<element name="Course" type="{http://www.orienteering.org/datastandard/3.0}SimpleCourse" minOccurs="0"/>
<element name="ControlCard" type="{http://www.orienteering.org/datastandard/3.0}ControlCard" maxOccurs="unbounded" minOccurs="0"/>
<element name="AssignedFee" type="{http://www.orienteering.org/datastandard/3.0}AssignedFee" maxOccurs="unbounded" minOccurs="0"/>
<element name="ServiceRequest" type="{http://www.orienteering.org/datastandard/3.0}ServiceRequest" maxOccurs="unbounded" minOccurs="0"/>
<element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/>
</sequence>
<attribute name="raceNumber" type="{http://www.w3.org/2001/XMLSchema}integer" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<AssignedFee>Defines the fees that the person has been assigned.protected StringThe bib number that the person is wearing.protected List<ControlCard>Defines the control cards assigned to the person.protected SimpleCourseDefines the course assigned to the person.protected ExtensionsContainer element for custom elements from other schemas.protected BigIntegerThe ordinal number of the race that the information belongs to for a multi-race event, starting at 1.protected List<ServiceRequest>Defines the services requested by the person.protected XMLGregorianCalendarThe time when the person starts. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDefines the fees that the person has been assigned.The bib number that the person is wearing.Defines the control cards assigned to the person.Defines the course assigned to the person.Container element for custom elements from other schemas.The ordinal number of the race that the information belongs to for a multi-race event, starting at 1.Defines the services requested by the person.The time when the person starts.voidsetBibNumber(String value) Sets the value of the bibNumber property.voidsetCourse(SimpleCourse value) Sets the value of the course property.voidsetExtensions(Extensions value) Sets the value of the extensions property.voidsetRaceNumber(BigInteger value) Sets the value of the raceNumber property.voidsetStartTime(XMLGregorianCalendar value) Sets the value of the startTime property.
-
Field Details
-
bibNumber
The bib number that the person is wearing. -
startTime
The time when the person starts. -
course
Defines the course assigned to the person. -
controlCard
Defines the control cards assigned to the person. Multiple control cards can be specified, e.g. one for punch checking and another for timing. -
assignedFee
Defines the fees that the person has been assigned. -
serviceRequest
Defines the services requested by the person. -
extensions
Container element for custom elements from other schemas. -
raceNumber
The ordinal number of the race that the information belongs to for a multi-race event, starting at 1.
-
-
Constructor Details
-
PersonRaceStart
public PersonRaceStart()
-
-
Method Details
-
getBibNumber
The bib number that the person is wearing.- Returns:
- possible object is
String
-
setBibNumber
Sets the value of the bibNumber property.- Parameters:
value- allowed object isString- See Also:
-
getStartTime
The time when the person starts.- Returns:
- possible object is
XMLGregorianCalendar
-
setStartTime
Sets the value of the startTime property.- Parameters:
value- allowed object isXMLGregorianCalendar- See Also:
-
getCourse
Defines the course assigned to the person.- Returns:
- possible object is
SimpleCourse
-
setCourse
Sets the value of the course property.- Parameters:
value- allowed object isSimpleCourse- See Also:
-
getControlCard
Defines the control cards assigned to the person. Multiple control cards can be specified, e.g. one for punch checking and another for timing. Gets the value of the controlCard property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the controlCard property.For example, to add a new item, do as follows:
getControlCard().add(newItem);
Objects of the following type(s) are allowed in the list
ControlCard- Returns:
- The value of the controlCard property.
-
getAssignedFee
Defines the fees that the person has been assigned. Gets the value of the assignedFee property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the assignedFee property.For example, to add a new item, do as follows:
getAssignedFee().add(newItem);
Objects of the following type(s) are allowed in the list
AssignedFee- Returns:
- The value of the assignedFee property.
-
getServiceRequest
Defines the services requested by the person. Gets the value of the serviceRequest property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the serviceRequest property.For example, to add a new item, do as follows:
getServiceRequest().add(newItem);
Objects of the following type(s) are allowed in the list
ServiceRequest- Returns:
- The value of the serviceRequest property.
-
getExtensions
Container element for custom elements from other schemas.- Returns:
- possible object is
Extensions
-
setExtensions
Sets the value of the extensions property.- Parameters:
value- allowed object isExtensions- See Also:
-
getRaceNumber
The ordinal number of the race that the information belongs to for a multi-race event, starting at 1.- Returns:
- possible object is
BigInteger
-
setRaceNumber
Sets the value of the raceNumber property.- Parameters:
value- allowed object isBigInteger- See Also:
-