com.labs64.netlicensing.schema.context.InfoEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netlicensing-client Show documentation
Show all versions of netlicensing-client Show documentation
Java wrapper for Labs64 NetLicensing RESTful API
//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 generiert
// Siehe https://javaee.github.io/jaxb-v2/
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2019.02.12 um 08:06:28 PM CET
//
package com.labs64.netlicensing.schema.context;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für info_enum.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <simpleType name="info_enum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="error"/>
* <enumeration value="warning"/>
* <enumeration value="info"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "info_enum")
@XmlEnum
public enum InfoEnum {
@XmlEnumValue("error")
ERROR("error"),
@XmlEnumValue("warning")
WARNING("warning"),
@XmlEnumValue("info")
INFO("info");
private final String value;
InfoEnum(String v) {
value = v;
}
public String value() {
return value;
}
public static InfoEnum fromValue(String v) {
for (InfoEnum c: InfoEnum.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}