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

com.prowidesoftware.swift.model.mx.dic.AllegementReason1Code Maven / Gradle / Ivy

There is a newer version: SRU2024-10.2.4
Show newest version

package com.prowidesoftware.swift.model.mx.dic;

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


/**
 * 

Java class for AllegementReason1Code. * *

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

*

 * <simpleType name="AllegementReason1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="ALG1"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AllegementReason1Code") @XmlEnum public enum AllegementReason1Code { /** * Allegement has been received and no match could be found. * */ @XmlEnumValue("ALG1") ALG_1("ALG1"); private final String value; AllegementReason1Code(String v) { value = v; } public String value() { return value; } public static AllegementReason1Code fromValue(String v) { for (AllegementReason1Code c: AllegementReason1Code.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy