org.re3data.schema._2_2.Certificates Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of base Show documentation
Show all versions of base Show documentation
A tool for machine actionable DMPs.
//
// 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.09.19 at 09:03:51 AM UTC
//
package org.re3data.schema._2_2;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for certificates.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="certificates">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CLARIN certificate B"/>
* <enumeration value="DIN 31644"/>
* <enumeration value="DINI Certificate"/>
* <enumeration value="DRAMBORA"/>
* <enumeration value="DSA"/>
* <enumeration value="ISO 16363"/>
* <enumeration value="ISO 16919"/>
* <enumeration value="RatSWD"/>
* <enumeration value="TRAC"/>
* <enumeration value="Trusted Digital Repository"/>
* <enumeration value="WDS"/>
* <enumeration value="other"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "certificates")
@XmlEnum
public enum Certificates {
@XmlEnumValue("CLARIN certificate B")
CLARIN_CERTIFICATE_B("CLARIN certificate B"),
@XmlEnumValue("DIN 31644")
DIN_31644("DIN 31644"),
@XmlEnumValue("DINI Certificate")
DINI_CERTIFICATE("DINI Certificate"),
DRAMBORA("DRAMBORA"),
DSA("DSA"),
@XmlEnumValue("ISO 16363")
ISO_16363("ISO 16363"),
@XmlEnumValue("ISO 16919")
ISO_16919("ISO 16919"),
@XmlEnumValue("RatSWD")
RAT_SWD("RatSWD"),
TRAC("TRAC"),
@XmlEnumValue("Trusted Digital Repository")
TRUSTED_DIGITAL_REPOSITORY("Trusted Digital Repository"),
WDS("WDS"),
@XmlEnumValue("other")
OTHER("other");
private final String value;
Certificates(String v) {
value = v;
}
public String value() {
return value;
}
public static Certificates fromValue(String v) {
for (Certificates c: Certificates.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}