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

com.prowidesoftware.swift.model.mx.dic.Status7Code 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.XmlType;


/**
 * 

Java class for Status7Code. * *

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

*

 * <simpleType name="Status7Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="CSUB"/>
 *     <enumeration value="PACK"/>
 *     <enumeration value="CAND"/>
 *     <enumeration value="COMP"/>
 *     <enumeration value="NOIN"/>
 *     <enumeration value="RCIS"/>
 *     <enumeration value="STIN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Status7Code") @XmlEnum public enum Status7Code { /** * Instruction has been cancelled by the agent, for example, due to an event deadline extension. * */ CSUB, /** * Instruction has been accepted and is validated for further processing * */ PACK, /** * Instruction has been cancelled. * */ CAND, /** * Processing has been completed. * */ COMP, /** * No instruction has been received (to be used in a reminder). * */ NOIN, /** * Instruction has been received by Issuer. * */ RCIS, /** * Standing instruction is applied. * */ STIN; public String value() { return name(); } public static Status7Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy