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

generated.AcknowledgementDetailSyntaxErrorCode 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.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.06.09 at 07:53:44 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 AcknowledgementDetailSyntaxErrorCode. * *

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

*

 * <simpleType name="AcknowledgementDetailSyntaxErrorCode">
 *   <restriction base="{}cs">
 *     <enumeration value="SYN"/>
 *     <enumeration value="SYN102"/>
 *     <enumeration value="SYN104"/>
 *     <enumeration value="SYN110"/>
 *     <enumeration value="SYN112"/>
 *     <enumeration value="SYN100"/>
 *     <enumeration value="SYN101"/>
 *     <enumeration value="SYN103"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AcknowledgementDetailSyntaxErrorCode") @XmlEnum public enum AcknowledgementDetailSyntaxErrorCode { SYN("SYN"), @XmlEnumValue("SYN102") SYN_102("SYN102"), @XmlEnumValue("SYN104") SYN_104("SYN104"), @XmlEnumValue("SYN110") SYN_110("SYN110"), @XmlEnumValue("SYN112") SYN_112("SYN112"), @XmlEnumValue("SYN100") SYN_100("SYN100"), @XmlEnumValue("SYN101") SYN_101("SYN101"), @XmlEnumValue("SYN103") SYN_103("SYN103"); private final String value; AcknowledgementDetailSyntaxErrorCode(String v) { value = v; } public String value() { return value; } public static AcknowledgementDetailSyntaxErrorCode fromValue(String v) { for (AcknowledgementDetailSyntaxErrorCode c: AcknowledgementDetailSyntaxErrorCode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy