com.hubject.datex.energyinfrastructure.generated.common.TimePeriodOfDay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convert Show documentation
Show all versions of convert Show documentation
Use converters from com.hubject.datex.convert.converters package to convert from the OICP formats to DATEX II TablePublication and StatusPublication.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.06 at 11:44:34 AM CEST
//
package com.hubject.datex.energyinfrastructure.generated.common;
import java.time.LocalTime;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.hubject.datex.convert.adapter.XsdTimeAdapter;
/**
* Java class for TimePeriodOfDay complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TimePeriodOfDay">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="startTimeOfPeriod" type="{http://datex2.eu/schema/3/common}Time"/>
* <element name="endTimeOfPeriod" type="{http://datex2.eu/schema/3/common}Time"/>
* <element name="_timePeriodOfDayExtension" type="{http://datex2.eu/schema/3/common}_ExtensionType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TimePeriodOfDay", propOrder = {
"startTimeOfPeriod",
"endTimeOfPeriod",
"timePeriodOfDayExtension"
})
public class TimePeriodOfDay {
@XmlElement(required = true, type = String.class)
@XmlJavaTypeAdapter(XsdTimeAdapter.class)
@XmlSchemaType(name = "time")
protected LocalTime startTimeOfPeriod;
@XmlElement(required = true, type = String.class)
@XmlJavaTypeAdapter(XsdTimeAdapter.class)
@XmlSchemaType(name = "time")
protected LocalTime endTimeOfPeriod;
@XmlElement(name = "_timePeriodOfDayExtension")
protected ExtensionType timePeriodOfDayExtension;
/**
* Gets the value of the startTimeOfPeriod property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalTime getStartTimeOfPeriod() {
return startTimeOfPeriod;
}
/**
* Sets the value of the startTimeOfPeriod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStartTimeOfPeriod(LocalTime value) {
this.startTimeOfPeriod = value;
}
/**
* Gets the value of the endTimeOfPeriod property.
*
* @return
* possible object is
* {@link String }
*
*/
public LocalTime getEndTimeOfPeriod() {
return endTimeOfPeriod;
}
/**
* Sets the value of the endTimeOfPeriod property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEndTimeOfPeriod(LocalTime value) {
this.endTimeOfPeriod = value;
}
/**
* Gets the value of the timePeriodOfDayExtension property.
*
* @return
* possible object is
* {@link ExtensionType }
*
*/
public ExtensionType getTimePeriodOfDayExtension() {
return timePeriodOfDayExtension;
}
/**
* Sets the value of the timePeriodOfDayExtension property.
*
* @param value
* allowed object is
* {@link ExtensionType }
*
*/
public void setTimePeriodOfDayExtension(ExtensionType value) {
this.timePeriodOfDayExtension = value;
}
}