
com.prowidesoftware.swift.model.mx.dic.CancelledStatusReason16Code 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 CancelledStatusReason16Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="CancelledStatusReason16Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="4"/>
* <enumeration value="SCEX"/>
* <enumeration value="OTHR"/>
* <enumeration value="CXLR"/>
* <enumeration value="BYIY"/>
* <enumeration value="CTHP"/>
* <enumeration value="CANZ"/>
* <enumeration value="CANT"/>
* <enumeration value="CSUB"/>
* <enumeration value="CANS"/>
* <enumeration value="CANI"/>
* <enumeration value="CORP"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "CancelledStatusReason16Code")
@XmlEnum
public enum CancelledStatusReason16Code {
/**
* Transaction has been cancelled; the security no longer exists or is no longer eligible on the market instructed. For corporate action related cancellation, CORP should be used.
*
*/
SCEX,
/**
* Other. See Narrative.
*
*/
OTHR,
/**
* Transaction is rejected by the executing party, the rejection is final therefore the order is cancelled in the system.
*
*/
CXLR,
/**
* Instruction has been cancelled because a buy-in has been initiated.
*
*/
BYIY,
/**
* Instruction is cancelled by a Third party.
*
*/
CTHP,
/**
* Original transaction has been cancelled and replaced to allow a partial or split settlement.
*
*/
CANZ,
/**
* Original transaction has been cancelled and replaced due to a corporate action.
*
*/
CANT,
/**
* Instruction has been cancelled by the agent due to an event deadline extension.
*
*/
CSUB,
/**
* Transaction is cancelled by the system.
*
*/
CANS,
/**
* Transaction is cancelled by yourself.
*
*/
CANI,
/**
* Transaction has been cancelled due to a corporate action.
*
*/
CORP;
public String value() {
return name();
}
public static CancelledStatusReason16Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy