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

com.prowidesoftware.swift.model.mx.dic.BlockedReason2Code 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 BlockedReason2Code. * *

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

*

 * <simpleType name="BlockedReason2Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="BKRP"/>
 *     <enumeration value="CMMT"/>
 *     <enumeration value="CNFS"/>
 *     <enumeration value="MORT"/>
 *     <enumeration value="PCOM"/>
 *     <enumeration value="PLDG"/>
 *     <enumeration value="TRPE"/>
 *     <enumeration value="SANC"/>
 *     <enumeration value="TRAN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "BlockedReason2Code") @XmlEnum public enum BlockedReason2Code { /** * Bankruptcy. * */ BKRP, /** * Commitment. * */ CMMT, /** * Confiscation. * */ CNFS, /** * Reserved in contemplation of death. * */ MORT, /** * Pending compliance verification. * */ PCOM, /** * Pledged. * */ PLDG, /** * Reregistration. * */ TRPE, /** * Sanctions are in place. * */ SANC, /** * Transfer. * */ TRAN; public String value() { return name(); } public static BlockedReason2Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy