
com.prowidesoftware.swift.model.mx.dic.TerminalManagementAction3Code 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 TerminalManagementAction3Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="TerminalManagementAction3Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="CREA"/>
* <enumeration value="DELT"/>
* <enumeration value="UPDT"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TerminalManagementAction3Code")
@XmlEnum
public enum TerminalManagementAction3Code {
/**
* Creation or addition of a new data set.
*
*/
CREA,
/**
* Data set must be deleted.
*
*/
DELT,
/**
* Update, or replacement of the data set.
*
*/
UPDT;
public String value() {
return name();
}
public static TerminalManagementAction3Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy