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

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


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

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


/**
 * 

Java class for TradeStatus6Code. * *

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

*

 * <simpleType name="TradeStatus6Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="INVA"/>
 *     <enumeration value="FMTC"/>
 *     <enumeration value="SMAP"/>
 *     <enumeration value="RJCT"/>
 *     <enumeration value="RSCD"/>
 *     <enumeration value="STLD"/>
 *     <enumeration value="SPLI"/>
 *     <enumeration value="UMTC"/>
 *     <enumeration value="SMAT"/>
 *     <enumeration value="FUMT"/>
 *     <enumeration value="NETT"/>
 *     <enumeration value="PFIX"/>
 *     <enumeration value="OMTC"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "TradeStatus6Code") @XmlEnum public enum TradeStatus6Code { /** * Trade is invalid. * */ INVA, /** * Trade is matched. * */ FMTC, /** * Trade has been selected for settlement and is pending. * */ SMAP, /** * Trade is rejected. * */ RJCT, /** * Trade is rescinded. * */ RSCD, /** * Settlement is complete. * */ STLD, /** * Trade has been split into subtrades for settlement efficiency. * */ SPLI, /** * Trade is unmatched. * */ UMTC, /** * Trade has been selected for settlement. * */ SMAT, /** * For NDF instructions, if a party has submitted both the open and fix confirmations and the counterparty is yet to submit the open and fix confirmation the instruction is updated to ‘Fix Unmatched’ Status * */ FUMT, /** * Trade has been netted by the central system. * */ NETT, /** * For NDF instructions, open confirmations are matched and the Fix confirmations are not matched. * */ PFIX, /** * For NDF trades, the trade is marked as open match when both open confirmations from both parties match. * */ OMTC; public String value() { return name(); } public static TradeStatus6Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy