Class TeamResult
Java class for TeamResult complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="TeamResult">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="EntryId" type="{http://www.orienteering.org/datastandard/3.0}Id" minOccurs="0"/>
<element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="Organisation" type="{http://www.orienteering.org/datastandard/3.0}Organisation" maxOccurs="unbounded" minOccurs="0"/>
<element name="BibNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="TeamMemberResult" type="{http://www.orienteering.org/datastandard/3.0}TeamMemberResult" 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>
</restriction>
</complexContent>
</complexType>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<AssignedFee>Defines the fees that the team has been assigned.protected StringThe bib number that the members of the team are wearing.protected IdThe id corresponding to this team's entry in an EntryList.protected ExtensionsContainer element for custom elements from other schemas.protected StringThe name of the team, e.g.protected List<Organisation>The organisation(s) the team is representing.protected List<ServiceRequest>Defines the services requested by the team.protected List<TeamMemberResult>Defines the result information for each team member. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDefines the fees that the team has been assigned.The bib number that the members of the team are wearing.The id corresponding to this team's entry in an EntryList.Container element for custom elements from other schemas.getName()The name of the team, e.g.The organisation(s) the team is representing.Defines the services requested by the team.Defines the result information for each team member.voidsetBibNumber(String value) Sets the value of the bibNumber property.voidsetEntryId(Id value) Sets the value of the entryId property.voidsetExtensions(Extensions value) Sets the value of the extensions property.voidSets the value of the name property.
-
Field Details
-
entryId
The id corresponding to this team's entry in an EntryList. -
name
The name of the team, e.g. organisation name and team number for a relay team. -
organisation
The organisation(s) the team is representing. -
bibNumber
The bib number that the members of the team are wearing. If each team member has a unique bib number, use the BibNumber of the TeamMemberStart element. -
teamMemberResult
Defines the result information for each team member. One element per relay leg must be included, even if the team has not assigned any team member to the leg. -
assignedFee
Defines the fees that the team has been assigned. -
serviceRequest
Defines the services requested by the team. -
extensions
Container element for custom elements from other schemas.
-
-
Constructor Details
-
TeamResult
public TeamResult()
-
-
Method Details
-
getEntryId
The id corresponding to this team's entry in an EntryList.- Returns:
- possible object is
Id
-
setEntryId
Sets the value of the entryId property.- Parameters:
value- allowed object isId- See Also:
-
getName
The name of the team, e.g. organisation name and team number for a relay team.- Returns:
- possible object is
String
-
setName
Sets the value of the name property. -
getOrganisation
The organisation(s) the team is representing. 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.
-
getBibNumber
The bib number that the members of the team are wearing. If each team member has a unique bib number, use the BibNumber of the TeamMemberStart element.- Returns:
- possible object is
String
-
setBibNumber
Sets the value of the bibNumber property.- Parameters:
value- allowed object isString- See Also:
-
getTeamMemberResult
Defines the result information for each team member. One element per relay leg must be included, even if the team has not assigned any team member to the leg. Gets the value of the teamMemberResult 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 teamMemberResult property.For example, to add a new item, do as follows:
getTeamMemberResult().add(newItem);
Objects of the following type(s) are allowed in the list
TeamMemberResult- Returns:
- The value of the teamMemberResult property.
-
getAssignedFee
Defines the fees that the team 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 team. 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:
-