All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.digipost.org.w3.xlink.TypeType Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2022.11.16 at 09:22:53 AM UTC 
//


package no.digipost.org.w3.xlink;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for typeType. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="typeType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *     <enumeration value="simple"/>
 *     <enumeration value="extended"/>
 *     <enumeration value="title"/>
 *     <enumeration value="resource"/>
 *     <enumeration value="locator"/>
 *     <enumeration value="arc"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "typeType") @XmlEnum public enum TypeType { @XmlEnumValue("simple") SIMPLE("simple"), @XmlEnumValue("extended") EXTENDED("extended"), @XmlEnumValue("title") TITLE("title"), @XmlEnumValue("resource") RESOURCE("resource"), @XmlEnumValue("locator") LOCATOR("locator"), @XmlEnumValue("arc") ARC("arc"); private final String value; TypeType(String v) { value = v; } public String value() { return value; } public static TypeType fromValue(String v) { for (TypeType c: TypeType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy