generated.LocalUnitSymbol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of farao-core-cne-exporter Show documentation
Show all versions of farao-core-cne-exporter Show documentation
Export the results of a RAO in a CNE file for the CORE region
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.10.09 at 03:38:20 PM UTC
//
package generated;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LocalUnitSymbol.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="LocalUnitSymbol">
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="AMP"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "LocalUnitSymbol", namespace = "")
@XmlEnum
public enum LocalUnitSymbol {
AMP;
public String value() {
return name();
}
public static LocalUnitSymbol fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy