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

io.atlasmap.xml.test.v2.XmlEnum Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version

package io.atlasmap.xml.test.v2;

import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for XmlEnum. * *

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

*

 * <simpleType name="XmlEnum">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="A"/>
 *     <enumeration value="B"/>
 *     <enumeration value="C"/>
 *     <enumeration value="D"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "XmlEnum") @javax.xml.bind.annotation.XmlEnum public enum XmlEnum { A, B, C, D; public String value() { return name(); } public static XmlEnum fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy