Package iofXml.v3
Class TeamCourseAssignment
java.lang.Object
iofXml.v3.TeamCourseAssignment
Element that connects a number of team members in a relay team to a number of courses. Teams are matched by 1) BibNumber, 2) TeamName+ClassName.
Java class for TeamCourseAssignment complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="TeamCourseAssignment">
<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="TeamName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="ClassName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="TeamMemberCourseAssignment" type="{http://www.orienteering.org/datastandard/3.0}TeamMemberCourseAssignment" 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 StringThe bib number of the team.protected StringThe name of the class that the team belongs to.protected ExtensionsContainer element for custom elements from other schemas.protected List<TeamMemberCourseAssignment>The assignment of courses to team members.protected StringThe name of the team. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThe bib number of the team.The name of the class that the team belongs to.Container element for custom elements from other schemas.The assignment of courses to team members.The name of the team.voidsetBibNumber(String value) Sets the value of the bibNumber property.voidsetClassName(String value) Sets the value of the className property.voidsetExtensions(Extensions value) Sets the value of the extensions property.voidsetTeamName(String value) Sets the value of the teamName property.
-
Field Details
-
bibNumber
The bib number of the team. -
teamName
The name of the team. -
className
The name of the class that the team belongs to. -
teamMemberCourseAssignment
The assignment of courses to team members. -
extensions
Container element for custom elements from other schemas.
-
-
Constructor Details
-
TeamCourseAssignment
public TeamCourseAssignment()
-
-
Method Details
-
getBibNumber
The bib number of the team.- Returns:
- possible object is
String
-
setBibNumber
Sets the value of the bibNumber property.- Parameters:
value- allowed object isString- See Also:
-
getTeamName
The name of the team.- Returns:
- possible object is
String
-
setTeamName
Sets the value of the teamName property.- Parameters:
value- allowed object isString- See Also:
-
getClassName
The name of the class that the team belongs to.- Returns:
- possible object is
String
-
setClassName
Sets the value of the className property.- Parameters:
value- allowed object isString- See Also:
-
getTeamMemberCourseAssignment
The assignment of courses to team members. Gets the value of the teamMemberCourseAssignment 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 teamMemberCourseAssignment property.For example, to add a new item, do as follows:
getTeamMemberCourseAssignment().add(newItem);
Objects of the following type(s) are allowed in the list
TeamMemberCourseAssignment- Returns:
- The value of the teamMemberCourseAssignment 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:
-