net.authorize.api.contract.v1.PaymentMethodEnum Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.06.13 at 02:31:45 PM IST
//
package net.authorize.api.contract.v1;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for paymentMethodEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="paymentMethodEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="creditCard"/>
* <enumeration value="eCheck"/>
* <enumeration value="payPal"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "paymentMethodEnum")
@XmlEnum
public enum PaymentMethodEnum {
@XmlEnumValue("creditCard")
CREDIT_CARD("creditCard"),
@XmlEnumValue("eCheck")
E_CHECK("eCheck"),
@XmlEnumValue("payPal")
PAY_PAL("payPal");
private final String value;
PaymentMethodEnum(String v) {
value = v;
}
public String value() {
return value;
}
public static PaymentMethodEnum fromValue(String v) {
for (PaymentMethodEnum c: PaymentMethodEnum.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}