com.powsybl.openrao.data.crac.io.cim.xsd.TimeSeries Maven / Gradle / Ivy
Show all versions of open-rao-crac-io-cim Show documentation
//
// Ce fichier a été généré par Eclipse Implementation of JAXB, v4.0.5
// Voir https://eclipse-ee4j.github.io/jaxb-ri
// Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
//
package com.powsybl.openrao.data.crac.io.cim.xsd;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Classe Java pour TimeSeries complex type.
*
* Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TimeSeries", propOrder = {
"mrid",
"businessType",
"curveType",
"inDomainMRID",
"outDomainMRID",
"period",
"reason"
})
public class TimeSeries {
@XmlElement(name = "mRID", required = true)
protected String mrid;
@XmlElement(required = true)
protected String businessType;
@XmlElement(required = true)
protected String curveType;
@XmlElement(name = "in_Domain.mRID")
protected AreaIDString inDomainMRID;
@XmlElement(name = "out_Domain.mRID")
protected AreaIDString outDomainMRID;
@XmlElement(name = "Period", required = true)
protected List period;
@XmlElement(name = "Reason")
protected List reason;
/**
* Obtient la valeur de la propriété mrid.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMRID() {
return mrid;
}
/**
* Définit la valeur de la propriété mrid.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMRID(String value) {
this.mrid = value;
}
/**
* Obtient la valeur de la propriété businessType.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBusinessType() {
return businessType;
}
/**
* Définit la valeur de la propriété businessType.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBusinessType(String value) {
this.businessType = value;
}
/**
* Obtient la valeur de la propriété curveType.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCurveType() {
return curveType;
}
/**
* Définit la valeur de la propriété curveType.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCurveType(String value) {
this.curveType = value;
}
/**
* Obtient la valeur de la propriété inDomainMRID.
*
* @return
* possible object is
* {@link AreaIDString }
*
*/
public AreaIDString getInDomainMRID() {
return inDomainMRID;
}
/**
* Définit la valeur de la propriété inDomainMRID.
*
* @param value
* allowed object is
* {@link AreaIDString }
*
*/
public void setInDomainMRID(AreaIDString value) {
this.inDomainMRID = value;
}
/**
* Obtient la valeur de la propriété outDomainMRID.
*
* @return
* possible object is
* {@link AreaIDString }
*
*/
public AreaIDString getOutDomainMRID() {
return outDomainMRID;
}
/**
* Définit la valeur de la propriété outDomainMRID.
*
* @param value
* allowed object is
* {@link AreaIDString }
*
*/
public void setOutDomainMRID(AreaIDString value) {
this.outDomainMRID = value;
}
/**
* Gets the value of the period 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 period property.
*
*
* For example, to add a new item, do as follows:
*
*
* getPeriod().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SeriesPeriod }
*
*
*
* @return
* The value of the period property.
*/
public List getPeriod() {
if (period == null) {
period = new ArrayList<>();
}
return this.period;
}
/**
* Gets the value of the reason 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 reason property.
*
*
* For example, to add a new item, do as follows:
*
*
* getReason().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Reason }
*
*
*
* @return
* The value of the reason property.
*/
public List getReason() {
if (reason == null) {
reason = new ArrayList<>();
}
return this.reason;
}
}