eu.europa.esig.dss.detailedreport.jaxb.XmlStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-detailed-report-jaxb Show documentation
Show all versions of dss-detailed-report-jaxb Show documentation
Generated source from XSD for Detailed Report and additional XSLT (for HTML/PDF renderings).
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// 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.12.24 at 03:19:12 PM CET
//
package eu.europa.esig.dss.detailedreport.jaxb;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Status.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="Status">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="OK"/>
* <enumeration value="NOT OK"/>
* <enumeration value="IGNORED"/>
* <enumeration value="INFORMATION"/>
* <enumeration value="WARNING"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "Status")
@XmlEnum
public enum XmlStatus {
OK("OK"),
@XmlEnumValue("NOT OK")
NOT_OK("NOT OK"),
IGNORED("IGNORED"),
INFORMATION("INFORMATION"),
WARNING("WARNING");
private final String value;
XmlStatus(String v) {
value = v;
}
public String value() {
return value;
}
public static XmlStatus fromValue(String v) {
for (XmlStatus c: XmlStatus.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy