generated.LocalHVDCModeType Maven / Gradle / Ivy
//
// 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: 2024.08.30 at 01:38:13 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 LocalHVDCModeType.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="LocalHVDCModeType">
* <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
* <enumeration value="A01"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "LocalHVDCModeType", namespace = "")
@XmlEnum
public enum LocalHVDCModeType {
@XmlEnumValue("A01")
A_01("A01");
private final String value;
LocalHVDCModeType(String v) {
value = v;
}
public String value() {
return value;
}
public static LocalHVDCModeType fromValue(String v) {
for (LocalHVDCModeType c: LocalHVDCModeType.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}