All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.farao_community.farao.cse.data.xsd.TPeriod Maven / Gradle / Ivy

There is a newer version: 1.38.0
Show newest version
//
// 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.10.29 at 10:09:22 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_Period complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="T_Period">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <choice>
 *         <element name="DayOfWeek" type="{}T_DayOfWeek" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Outages" type="{}T_Outages" maxOccurs="unbounded" minOccurs="0"/>
 *       </choice>
 *       <attribute name="dtini" use="required" type="{}DateTimeUTCType" />
 *       <attribute name="dtfin" use="required" type="{}DateTimeUTCType" />
 *       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "T_Period", namespace = "", propOrder = { "dayOfWeek", "outages" }) public class TPeriod { @XmlElement(name = "DayOfWeek") protected List dayOfWeek; @XmlElement(name = "Outages") protected List outages; @XmlAttribute(name = "dtini", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String dtini; @XmlAttribute(name = "dtfin", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String dtfin; @XmlAttribute(name = "description") protected String description; /** * Gets the value of the dayOfWeek 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 dayOfWeek property. * *

* For example, to add a new item, do as follows: *

     *    getDayOfWeek().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TDayOfWeek } * * */ public List getDayOfWeek() { if (dayOfWeek == null) { dayOfWeek = new ArrayList(); } return this.dayOfWeek; } /** * Gets the value of the outages 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 outages property. * *

* For example, to add a new item, do as follows: *

     *    getOutages().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TOutages } * * */ public List getOutages() { if (outages == null) { outages = new ArrayList(); } return this.outages; } /** * Gets the value of the dtini property. * * @return * possible object is * {@link String } * */ public String getDtini() { return dtini; } /** * Sets the value of the dtini property. * * @param value * allowed object is * {@link String } * */ public void setDtini(String value) { this.dtini = value; } /** * Gets the value of the dtfin property. * * @return * possible object is * {@link String } * */ public String getDtfin() { return dtfin; } /** * Sets the value of the dtfin property. * * @param value * allowed object is * {@link String } * */ public void setDtfin(String value) { this.dtfin = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy