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

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

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

*

 * <simpleType name="MessageItemCondition1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="MNDT"/>
 *     <enumeration value="CFVL"/>
 *     <enumeration value="DFLT"/>
 *     <enumeration value="ALWV"/>
 *     <enumeration value="IFAV"/>
 *     <enumeration value="COPY"/>
 *     <enumeration value="UNSP"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "MessageItemCondition1Code") @XmlEnum public enum MessageItemCondition1Code { /** * Message item must be present. * */ MNDT, /** * Message item must be present with the configured value. * */ CFVL, /** * Message item has the configured value if the item is absent. * */ DFLT, /** * Message item must have one of the configured values. * */ ALWV, /** * Message item has to be present if available. * */ IFAV, /** * Message item is present if it was present in a previous related message with the same value. * */ COPY, /** * Message item is not supported and has to be absent. * */ UNSP; public String value() { return name(); } public static MessageItemCondition1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy