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

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

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "MessageError1Code") @XmlEnum public enum MessageError1Code { /** * Invalid data element format * */ IDEF, /** * Invalid data element length * */ IDEL, /** * Invalid data element value * */ IDEV, /** * Invalid message * */ INME, /** * Invalid Message Function * */ INMF, /** * Message Parse Error * */ MEPE, /** * Other reason to reject a message defined at private level. * */ OTHP, /** * Protocol Version * */ PRVE, /** * Required data element missing * */ RDEM, /** * Security * */ SECU, /** * Error that is not defined in the Message type Error and is not OtherNational or OtherPrivate Error * */ UDFD, /** * Other reason defined at national level to reject a message. * */ OTHN, /** * Iterative data error * */ ITDE, /** * Duplicate Message * */ DUME, /** * Inconsistent data within message * */ IDWM, /** * Inconsistent data with related message * */ IDRM, /** * Invalid Batch * */ IBAT, /** * Invalid Collection * */ ICOL; public String value() { return name(); } public static MessageError1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy