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

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

The newest version!

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

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


/**
 * 

Java class for Status7Code. * *

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @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