Class TeamCourseAssignment
-
- All Implemented Interfaces:
public class 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>
-
-
Constructor Summary
Constructors Constructor Description TeamCourseAssignment()
-
Method Summary
Modifier and Type Method Description String
getBibNumber()
The bib number of the team. void
setBibNumber(String value)
Sets the value of the bibNumber property. String
getTeamName()
The name of the team. void
setTeamName(String value)
Sets the value of the teamName property. String
getClassName()
The name of the class that the team belongs to. void
setClassName(String value)
Sets the value of the className property. List<TeamMemberCourseAssignment>
getTeamMemberCourseAssignment()
The assignment of courses to team members. Extensions
getExtensions()
Container element for custom elements from other schemas. void
setExtensions(Extensions value)
Sets the value of the extensions property. -
-
Method Detail
-
getBibNumber
String getBibNumber()
The bib number of the team.
- Returns:
possibleobject is String
-
setBibNumber
void setBibNumber(String value)
Sets the value of the bibNumber property.
- Parameters:
value
- allowed object is String
-
getTeamName
String getTeamName()
The name of the team.
- Returns:
possibleobject is String
-
setTeamName
void setTeamName(String value)
Sets the value of the teamName property.
- Parameters:
value
- allowed object is String
-
getClassName
String getClassName()
The name of the class that the team belongs to.
- Returns:
possibleobject is String
-
setClassName
void setClassName(String value)
Sets the value of the className property.
- Parameters:
value
- allowed object is String
-
getTeamMemberCourseAssignment
List<TeamMemberCourseAssignment> 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
set
method 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:
Thevalue of the teamMemberCourseAssignment property.
-
getExtensions
Extensions getExtensions()
Container element for custom elements from other schemas.
- Returns:
possibleobject is Extensions
-
setExtensions
void setExtensions(Extensions value)
Sets the value of the extensions property.
- Parameters:
value
- allowed object is Extensions
-
-
-
-