
com.prowidesoftware.swift.model.mx.dic.OnLineCapability1Code 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 OnLineCapability1Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="OnLineCapability1Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="OFLN"/>
* <enumeration value="ONLN"/>
* <enumeration value="SMON"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "OnLineCapability1Code")
@XmlEnum
public enum OnLineCapability1Code {
/**
* Off-line only capable.
*
*/
OFLN,
/**
* On-line only capable.
*
*/
ONLN,
/**
* Off-line capable with possible on-line requests to the acquirer.
*
*/
SMON;
public String value() {
return name();
}
public static OnLineCapability1Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy