ParseType.java
//
// 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.29 at 06:50:16 PM CEST
//
package org.opentrafficsim.xml.generated;
import javax.annotation.Generated;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for parseType.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <pre>
* <simpleType name="parseType">
* <restriction base="{http://www.w3.org/2001/XMLSchema}token">
* <enumeration value="xml"/>
* <enumeration value="text"/>
* </restriction>
* </simpleType>
* </pre>
*
*/
@XmlType(name = "parseType", namespace = "http://www.w3.org/2001/XInclude")
@XmlEnum
@Generated(value = "com.sun.tools.xjc.Driver", comments = "JAXB RI v2.3.7", date = "2024-08-29T18:50:16+02:00")
public enum ParseType {
@XmlEnumValue("xml")
XML("xml"),
@XmlEnumValue("text")
TEXT("text");
private final String value;
ParseType(String v) {
value = v;
}
public String value() {
return value;
}
public static ParseType fromValue(String v) {
for (ParseType c: ParseType.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}