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

generated.LocalStatusType Maven / Gradle / Ivy

There is a newer version: 5.0.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: 2023.10.09 at 01:48:50 PM UTC 
//


package generated;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for LocalStatusType. * *

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

*

 * <simpleType name="LocalStatusType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
 *     <enumeration value="A01"/>
 *     <enumeration value="Z01"/>
 *     <enumeration value="Z02"/>
 *     <enumeration value="Z03"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "LocalStatusType", namespace = "") @XmlEnum public enum LocalStatusType { @XmlEnumValue("A01") A_01("A01"), /** * *
     * <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>For flow optimisation</Title><Definition>The Series will be used during the flow optimisation step</Definition></CodeDescription>
     * 
* * */ @XmlEnumValue("Z01") Z_01("Z01"), /** * *
     * <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>For voltage optimisation</Title><Definition>The Series will be used during the voltage optimisation step</Definition></CodeDescription>
     * 
* * */ @XmlEnumValue("Z02") Z_02("Z02"), /** * *
     * <?xml version="1.0" encoding="UTF-8"?><CodeDescription xmlns:ecl="urn:entsoe.eu:wgedi:codelists" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Title>For flow optimization</Title><Definition>Describes an element which needs to be optimized by a flow optimization process.</Definition></CodeDescription>
     * 
* * */ @XmlEnumValue("Z03") Z_03("Z03"); private final String value; LocalStatusType(String v) { value = v; } public String value() { return value; } public static LocalStatusType fromValue(String v) { for (LocalStatusType c: LocalStatusType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy