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

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

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "ResponseMode2Code") @XmlEnum public enum ResponseMode2Code { /** * The Response is required at the end of play. * */ SEND, /** * The Message Response is immediate, after taking into account the request. * */ IMMD, /** * The Message Response is not required, except in case of error. * */ NREQ, /** * The Print Response is required at the end of print. * */ PEND; public String value() { return name(); } public static ResponseMode2Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy