Class Schedule
-
- All Implemented Interfaces:
public class Schedule
Defines the schedule of sub-events that comprise the entire orienteering event, e.g. banquets, social events and awards ceremonies.
Java class for Schedule complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Schedule"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="StartTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/> <element name="EndTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="Venue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="Position" type="{http://www.orienteering.org/datastandard/3.0}GeoPosition" minOccurs="0"/> <element name="Details" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="modifyTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Schedule()
-
Method Summary
Modifier and Type Method Description XMLGregorianCalendar
getStartTime()
The start time of the sub-event. void
setStartTime(XMLGregorianCalendar value)
Sets the value of the startTime property. XMLGregorianCalendar
getEndTime()
The end time of the sub-event. void
setEndTime(XMLGregorianCalendar value)
Sets the value of the endTime property. String
getName()
The name or title of the sub-event. void
setName(String value)
Sets the value of the name property. String
getVenue()
The name of the place where the sub-event occurs. void
setVenue(String value)
Sets the value of the venue property. GeoPosition
getPosition()
The geographical position of the sub-event. void
setPosition(GeoPosition value)
Sets the value of the position property. String
getDetails()
Any extra information about the sub-event. void
setDetails(String value)
Sets the value of the details property. XMLGregorianCalendar
getModifyTime()
Gets the value of the modifyTime property. void
setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property. -
-
Method Detail
-
getStartTime
XMLGregorianCalendar getStartTime()
The start time of the sub-event.
- Returns:
possibleobject is XMLGregorianCalendar
-
setStartTime
void setStartTime(XMLGregorianCalendar value)
Sets the value of the startTime property.
- Parameters:
value
- allowed object is XMLGregorianCalendar
-
getEndTime
XMLGregorianCalendar getEndTime()
The end time of the sub-event.
- Returns:
possibleobject is XMLGregorianCalendar
-
setEndTime
void setEndTime(XMLGregorianCalendar value)
Sets the value of the endTime property.
- Parameters:
value
- allowed object is XMLGregorianCalendar
-
setName
void setName(String value)
Sets the value of the name property.
- Parameters:
value
- allowed object is String
-
getVenue
String getVenue()
The name of the place where the sub-event occurs.
- Returns:
possibleobject is String
-
setVenue
void setVenue(String value)
Sets the value of the venue property.
- Parameters:
value
- allowed object is String
-
getPosition
GeoPosition getPosition()
The geographical position of the sub-event.
- Returns:
possibleobject is GeoPosition
-
setPosition
void setPosition(GeoPosition value)
Sets the value of the position property.
- Parameters:
value
- allowed object is GeoPosition
-
getDetails
String getDetails()
Any extra information about the sub-event.
- Returns:
possibleobject is String
-
setDetails
void setDetails(String value)
Sets the value of the details property.
- Parameters:
value
- allowed object is String
-
getModifyTime
XMLGregorianCalendar getModifyTime()
Gets the value of the modifyTime property.
- Returns:
possibleobject is XMLGregorianCalendar
-
setModifyTime
void setModifyTime(XMLGregorianCalendar value)
Sets the value of the modifyTime property.
- Parameters:
value
- allowed object is XMLGregorianCalendar
-
-
-
-