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

generated.ApplicationMediaType Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.6 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.03.10 at 07:30:12 PM PDT 
//


package generated;

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


/**
 * 

Java class for ApplicationMediaType. * *

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

*

 * <simpleType name="ApplicationMediaType">
 *   <restriction base="{}cs">
 *     <enumeration value="application/dicom"/>
 *     <enumeration value="application/msword"/>
 *     <enumeration value="application/pdf"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ApplicationMediaType") @XmlEnum public enum ApplicationMediaType { @XmlEnumValue("application/dicom") APPLICATION_DICOM("application/dicom"), @XmlEnumValue("application/msword") APPLICATION_MSWORD("application/msword"), @XmlEnumValue("application/pdf") APPLICATION_PDF("application/pdf"); private final String value; ApplicationMediaType(String v) { value = v; } public String value() { return value; } public static ApplicationMediaType fromValue(String v) { for (ApplicationMediaType c: ApplicationMediaType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy