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

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

There is a newer version: SRU2024-10.2.6
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 LateReport1Code. * *

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

*

 * <simpleType name="LateReport1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="LAT1"/>
 *     <enumeration value="LAT2"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "LateReport1Code") @XmlEnum public enum LateReport1Code { /** * The confirmation is late. * */ @XmlEnumValue("LAT1") LAT_1("LAT1"), /** * The confirmation is late because the trade was executed as a number of partials. * */ @XmlEnumValue("LAT2") LAT_2("LAT2"); private final String value; LateReport1Code(String v) { value = v; } public String value() { return value; } public static LateReport1Code fromValue(String v) { for (LateReport1Code c: LateReport1Code.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy