Class Competitor
Java class for Competitor complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Competitor">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Person" type="{http://www.orienteering.org/datastandard/3.0}Person"/>
<element name="Organisation" type="{http://www.orienteering.org/datastandard/3.0}Organisation" maxOccurs="unbounded" minOccurs="0"/>
<element name="ControlCard" type="{http://www.orienteering.org/datastandard/3.0}ControlCard" maxOccurs="unbounded" minOccurs="0"/>
<element name="Class" type="{http://www.orienteering.org/datastandard/3.0}Class" maxOccurs="unbounded" minOccurs="0"/>
<element name="Score" type="{http://www.orienteering.org/datastandard/3.0}Score" maxOccurs="unbounded" minOccurs="0"/>
<element name="Extensions" type="{http://www.orienteering.org/datastandard/3.0}Extensions" minOccurs="0"/>
</sequence>
<attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe default classes of the competitor.protected List<ControlCard>The default control cards of the competitor.protected ExtensionsContainer element for custom elements from other schemas.protected XMLGregorianCalendarprotected List<Organisation>The organisations that the person is member of.protected PersonAny scores, e.g. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetClazz()The default classes of the competitor.The default control cards of the competitor.Container element for custom elements from other schemas.Gets the value of the modifyTime property.The organisations that the person is member of.Gets the value of the person property.getScore()Any scores, e.g.voidsetExtensions(Extensions value) Sets the value of the extensions property.voidSets the value of the modifyTime property.voidSets the value of the person property.
-
Field Details
-
person
-
organisation
The organisations that the person is member of. -
controlCard
The default control cards of the competitor. -
clazz
The default classes of the competitor. -
score
Any scores, e.g. ranking scores, for the person. -
extensions
Container element for custom elements from other schemas. -
modifyTime
-
-
Constructor Details
-
Competitor
public Competitor()
-
-
Method Details
-
getPerson
Gets the value of the person property.- Returns:
- possible object is
Person
-
setPerson
Sets the value of the person property.- Parameters:
value- allowed object isPerson
-
getOrganisation
The organisations that the person is member of. Gets the value of the organisation 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 organisation property.For example, to add a new item, do as follows:
getOrganisation().add(newItem);
Objects of the following type(s) are allowed in the list
Organisation- Returns:
- The value of the organisation property.
-
getControlCard
The default control cards of the competitor. 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.
-
getClazz
The default classes of the competitor. Gets the value of the clazz 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 clazz property.For example, to add a new item, do as follows:
getClazz().add(newItem);
Objects of the following type(s) are allowed in the list
Class- Returns:
- The value of the clazz property.
-
getScore
Any scores, e.g. ranking scores, for the person. Gets the value of the score 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 score property.For example, to add a new item, do as follows:
getScore().add(newItem);
Objects of the following type(s) are allowed in the list
Score- Returns:
- The value of the score 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:
-
getModifyTime
Gets the value of the modifyTime property.- Returns:
- possible object is
XMLGregorianCalendar
-
setModifyTime
Sets the value of the modifyTime property.- Parameters:
value- allowed object isXMLGregorianCalendar
-