Package uk.org.siri.siri21
Class HalfOpenTimestampInputRangeStructure
- java.lang.Object
-
- uk.org.siri.siri21.HalfOpenTimestampInputRangeStructure
-
- All Implemented Interfaces:
Serializable
public class HalfOpenTimestampInputRangeStructure extends Object implements Serializable
Type for a range of date times. Start time must be specified, end time is optional.Java class for HalfOpenTimestampInputRangeStructure complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="HalfOpenTimestampInputRangeStructure"> <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="EndTimePrecision" type="{http://www.siri.org.uk/siri}EndTimePrecisionEnumeration" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected ZonedDateTimeendTimeprotected EndTimePrecisionEnumerationendTimePrecisionprotected ZonedDateTimestartTime
-
Constructor Summary
Constructors Constructor Description HalfOpenTimestampInputRangeStructure()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ZonedDateTimegetEndTime()Gets the value of the endTime property.EndTimePrecisionEnumerationgetEndTimePrecision()Gets the value of the endTimePrecision property.ZonedDateTimegetStartTime()Gets the value of the startTime property.voidsetEndTime(ZonedDateTime value)Sets the value of the endTime property.voidsetEndTimePrecision(EndTimePrecisionEnumeration value)Sets the value of the endTimePrecision property.voidsetStartTime(ZonedDateTime value)Sets the value of the startTime property.
-
-
-
Field Detail
-
startTime
protected ZonedDateTime startTime
-
endTime
protected ZonedDateTime endTime
-
endTimePrecision
protected EndTimePrecisionEnumeration endTimePrecision
-
-
Method Detail
-
getStartTime
public ZonedDateTime getStartTime()
Gets the value of the startTime property.- Returns:
- possible object is
String
-
setStartTime
public void setStartTime(ZonedDateTime value)
Sets the value of the startTime property.- Parameters:
value- allowed object isString
-
getEndTime
public ZonedDateTime getEndTime()
Gets the value of the endTime property.- Returns:
- possible object is
String
-
setEndTime
public void setEndTime(ZonedDateTime value)
Sets the value of the endTime property.- Parameters:
value- allowed object isString
-
getEndTimePrecision
public EndTimePrecisionEnumeration getEndTimePrecision()
Gets the value of the endTimePrecision property.- Returns:
- possible object is
EndTimePrecisionEnumeration
-
setEndTimePrecision
public void setEndTimePrecision(EndTimePrecisionEnumeration value)
Sets the value of the endTimePrecision property.- Parameters:
value- allowed object isEndTimePrecisionEnumeration
-
-