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

org.plasma.profile.ProfileURN Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.11.25 at 12:40:32 PM MST 
//


package org.plasma.profile;

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


/**
 * 

Java class for ProfileURN. * *

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

*

 * <simpleType name="ProfileURN">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Plasma_SDO_Profile_v1_1.mdxml"/>
 *     <enumeration value="PlasmaSDO.profile_v1_1.uml"/>
 *     <enumeration value="PlasmaSDODataTypes_v1_1.uml"/>
 *     <enumeration value="Plasma_SDO_Profile_v1_2.mdxml"/>
 *     <enumeration value="PlasmaSDO.profile_v1_2.uml"/>
 *     <enumeration value="PlasmaSDODataTypes_v1_2.uml"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ProfileURN") @XmlEnum public enum ProfileURN { @XmlEnumValue("Plasma_SDO_Profile_v1_1.mdxml") PLASMA_SDO_PROFILE_V_1_1_MDXML("Plasma_SDO_Profile_v1_1.mdxml"), @XmlEnumValue("PlasmaSDO.profile_v1_1.uml") PLASMA_SDO_PROFILE_V_1_1_UML("PlasmaSDO.profile_v1_1.uml"), @XmlEnumValue("PlasmaSDODataTypes_v1_1.uml") PLASMA_SDO_DATA_TYPES_V_1_1_UML("PlasmaSDODataTypes_v1_1.uml"), @XmlEnumValue("Plasma_SDO_Profile_v1_2.mdxml") PLASMA_SDO_PROFILE_V_1_2_MDXML("Plasma_SDO_Profile_v1_2.mdxml"), @XmlEnumValue("PlasmaSDO.profile_v1_2.uml") PLASMA_SDO_PROFILE_V_1_2_UML("PlasmaSDO.profile_v1_2.uml"), @XmlEnumValue("PlasmaSDODataTypes_v1_2.uml") PLASMA_SDO_DATA_TYPES_V_1_2_UML("PlasmaSDODataTypes_v1_2.uml"); private final String value; ProfileURN(String v) { value = v; } public String value() { return value; } public static ProfileURN fromValue(String v) { for (ProfileURN c: ProfileURN.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy