com.powsybl.openrao.data.crac.io.cim.xsd.SeriesPeriod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-rao-crac-io-cim Show documentation
Show all versions of open-rao-crac-io-cim Show documentation
CRAC creator implementation for CRAC specific to SWE zone format
//
// 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 javax.xml.datatype.Duration;
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 Series_Period complex type.
*
* Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Series_Period", propOrder = {
"timeInterval",
"resolution",
"point"
})
public class SeriesPeriod {
@XmlElement(required = true)
protected ESMPDateTimeInterval timeInterval;
@XmlElement(required = true)
protected Duration resolution;
@XmlElement(name = "Point", required = true)
protected List point;
/**
* Obtient la valeur de la propriété timeInterval.
*
* @return
* possible object is
* {@link ESMPDateTimeInterval }
*
*/
public ESMPDateTimeInterval getTimeInterval() {
return timeInterval;
}
/**
* Définit la valeur de la propriété timeInterval.
*
* @param value
* allowed object is
* {@link ESMPDateTimeInterval }
*
*/
public void setTimeInterval(ESMPDateTimeInterval value) {
this.timeInterval = value;
}
/**
* Obtient la valeur de la propriété resolution.
*
* @return
* possible object is
* {@link Duration }
*
*/
public Duration getResolution() {
return resolution;
}
/**
* Définit la valeur de la propriété resolution.
*
* @param value
* allowed object is
* {@link Duration }
*
*/
public void setResolution(Duration value) {
this.resolution = value;
}
/**
* Gets the value of the point 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 point property.
*
*
* For example, to add a new item, do as follows:
*
*
* getPoint().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Point }
*
*
*
* @return
* The value of the point property.
*/
public List getPoint() {
if (point == null) {
point = new ArrayList<>();
}
return this.point;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy