com.farao_community.farao.cse.data.xsd.TTimeInterval Maven / Gradle / Ivy
Show all versions of gridcapa-cse-data Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.03.12 at 10:04:12 AM UTC
//
package com.farao_community.farao.cse.data.xsd;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for T_TimeInterval complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="T_TimeInterval">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NTC" type="{}T_NTC" maxOccurs="unbounded" minOccurs="0"/>
* <element name="TARGET" type="{http://www.w3.org/2001/XMLSchema}short" minOccurs="0"/>
* <element name="SplittingFactor" type="{}T_NTC" maxOccurs="unbounded" minOccurs="0"/>
* <element name="FixedFlow" type="{}T_NTC" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="tini" use="required" type="{}THourMinuteUTCType" />
* <attribute name="tfin" use="required" type="{}THourMinuteUTCType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "T_TimeInterval", namespace = "", propOrder = {
"ntc",
"target",
"splittingFactor",
"fixedFlow"
})
public class TTimeInterval {
@XmlElement(name = "NTC")
protected List ntc;
@XmlElement(name = "TARGET")
protected Short target;
@XmlElement(name = "SplittingFactor")
protected List splittingFactor;
@XmlElement(name = "FixedFlow")
protected List fixedFlow;
@XmlAttribute(name = "tini", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String tini;
@XmlAttribute(name = "tfin", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String tfin;
/**
* Gets the value of the ntc 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 ntc property.
*
*
* For example, to add a new item, do as follows:
*
* getNTC().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TNTC }
*
*
*/
public List getNTC() {
if (ntc == null) {
ntc = new ArrayList();
}
return this.ntc;
}
/**
* Gets the value of the target property.
*
* @return
* possible object is
* {@link Short }
*
*/
public Short getTARGET() {
return target;
}
/**
* Sets the value of the target property.
*
* @param value
* allowed object is
* {@link Short }
*
*/
public void setTARGET(Short value) {
this.target = value;
}
/**
* Gets the value of the splittingFactor 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 splittingFactor property.
*
*
* For example, to add a new item, do as follows:
*
* getSplittingFactor().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TNTC }
*
*
*/
public List getSplittingFactor() {
if (splittingFactor == null) {
splittingFactor = new ArrayList();
}
return this.splittingFactor;
}
/**
* Gets the value of the fixedFlow 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 fixedFlow property.
*
*
* For example, to add a new item, do as follows:
*
* getFixedFlow().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link TNTC }
*
*
*/
public List getFixedFlow() {
if (fixedFlow == null) {
fixedFlow = new ArrayList();
}
return this.fixedFlow;
}
/**
* Gets the value of the tini property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTini() {
return tini;
}
/**
* Sets the value of the tini property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTini(String value) {
this.tini = value;
}
/**
* Gets the value of the tfin property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTfin() {
return tfin;
}
/**
* Sets the value of the tfin property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTfin(String value) {
this.tfin = value;
}
}