
tsg.ns.wsdl.coop.AvsMatchCode Maven / Gradle / Ivy
package tsg.ns.wsdl.coop;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for AvsMatchCode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="AvsMatchCode">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="_n"/>
* <enumeration value="_x"/>
* <enumeration value="_y"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "AvsMatchCode", namespace = "urn:types.common_2023_1.platform.webservices.netsuite.com")
@XmlEnum
public enum AvsMatchCode {
@XmlEnumValue("_n")
N("_n"),
@XmlEnumValue("_x")
X("_x"),
@XmlEnumValue("_y")
Y("_y");
private final String value;
AvsMatchCode(String v) {
value = v;
}
public String value() {
return value;
}
public static AvsMatchCode fromValue(String v) {
for (AvsMatchCode c: AvsMatchCode.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy