org.oasisopen.odata.csdl.v4.TVariable Maven / Gradle / Ivy
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// 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.04.07 at 10:41:54 PM UTC
//
package org.oasisopen.odata.csdl.v4;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for TVariable.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="TVariable">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="variable"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TVariable")
@XmlEnum
public enum TVariable {
@XmlEnumValue("variable")
VARIABLE("variable");
private final String value;
TVariable(String v) {
value = v;
}
public String value() {
return value;
}
public static TVariable fromValue(String v) {
for (TVariable c: TVariable.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy