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

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

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

*

 * <simpleType name="AccountStatus3Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="ENAB"/>
 *     <enumeration value="DISA"/>
 *     <enumeration value="DELE"/>
 *     <enumeration value="FORM"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "AccountStatus3Code") @XmlEnum public enum AccountStatus3Code { /** * Account can be used for its intended purpose. * */ ENAB, /** * Account cannot be used for its intended purpose, either temporarily or permanently. * */ DISA, /** * Account cannot be used any longer. * */ DELE, /** * Account is temporary and can be partially used for its intended purpose. The account will be fully available for use when the account servicer has received all relevant documents. * */ FORM; public String value() { return name(); } public static AccountStatus3Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy