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

generated.AcknowledgementDetailNotSupportedCode 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: 2013.03.15 at 09:03:15 AM PDT 
//


package generated;

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


/**
 * 

Java class for AcknowledgementDetailNotSupportedCode. * *

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

*

 * <simpleType name="AcknowledgementDetailNotSupportedCode">
 *   <restriction base="{}cs">
 *     <enumeration value="NS260"/>
 *     <enumeration value="NS261"/>
 *     <enumeration value="NS200"/>
 *     <enumeration value="NS250"/>
 *     <enumeration value="NS202"/>
 *     <enumeration value="NS203"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AcknowledgementDetailNotSupportedCode") @XmlEnum public enum AcknowledgementDetailNotSupportedCode { @XmlEnumValue("NS260") NS_260("NS260"), @XmlEnumValue("NS261") NS_261("NS261"), @XmlEnumValue("NS200") NS_200("NS200"), @XmlEnumValue("NS250") NS_250("NS250"), @XmlEnumValue("NS202") NS_202("NS202"), @XmlEnumValue("NS203") NS_203("NS203"); private final String value; AcknowledgementDetailNotSupportedCode(String v) { value = v; } public String value() { return value; } public static AcknowledgementDetailNotSupportedCode fromValue(String v) { for (AcknowledgementDetailNotSupportedCode c: AcknowledgementDetailNotSupportedCode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy