Package iofXml.v3
Class SimpleCourse
-
- All Implemented Interfaces:
public class SimpleCourseDefines a course, excluding controls.
Java class for SimpleCourse complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="SimpleCourse"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Id" type="{http://www.orienteering.org/datastandard/3.0}Id" minOccurs="0"/> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="CourseFamily" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Length" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> <element name="Climb" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/> <element name="NumberOfControls" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description SimpleCourse()
-
Method Summary
Modifier and Type Method Description IdgetId()Gets the value of the id property. voidsetId(Id value)Sets the value of the id property. StringgetName()The name of the course. voidsetName(String value)Sets the value of the name property. StringgetCourseFamily()The family or group of forked courses that the course is part of. voidsetCourseFamily(String value)Sets the value of the courseFamily property. DoublegetLength()The length of the course, in meters. voidsetLength(Double value)Sets the value of the length property. DoublegetClimb()The climb of the course, in meters, along the expected best route choice. voidsetClimb(Double value)Sets the value of the climb property. BigIntegergetNumberOfControls()The number of controls in the course, excluding start and finish. voidsetNumberOfControls(BigInteger value)Sets the value of the numberOfControls property. -
-
Method Detail
-
setId
void setId(Id value)
Sets the value of the id property.
- Parameters:
value- allowed object is Id
-
setName
void setName(String value)
Sets the value of the name property.
- Parameters:
value- allowed object is String
-
getCourseFamily
String getCourseFamily()
The family or group of forked courses that the course is part of.
- Returns:
possibleobject is String
-
setCourseFamily
void setCourseFamily(String value)
Sets the value of the courseFamily property.
- Parameters:
value- allowed object is String
-
setLength
void setLength(Double value)
Sets the value of the length property.
- Parameters:
value- allowed object is Double
-
getClimb
Double getClimb()
The climb of the course, in meters, along the expected best route choice.
- Returns:
possibleobject is Double
-
setClimb
void setClimb(Double value)
Sets the value of the climb property.
- Parameters:
value- allowed object is Double
-
getNumberOfControls
BigInteger getNumberOfControls()
The number of controls in the course, excluding start and finish.
- Returns:
possibleobject is BigInteger
-
setNumberOfControls
void setNumberOfControls(BigInteger value)
Sets the value of the numberOfControls property.
- Parameters:
value- allowed object is BigInteger
-
-
-
-