net.authorize.api.contract.v1.DeviceActivationEnum 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: 2016.11.22 at 06:00:08 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 deviceActivationEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="deviceActivationEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="Activate"/>
* <enumeration value="Disable"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "deviceActivationEnum")
@XmlEnum
public enum DeviceActivationEnum {
@XmlEnumValue("Activate")
ACTIVATE("Activate"),
@XmlEnumValue("Disable")
DISABLE("Disable");
private final String value;
DeviceActivationEnum(String v) {
value = v;
}
public String value() {
return value;
}
public static DeviceActivationEnum fromValue(String v) {
for (DeviceActivationEnum c: DeviceActivationEnum.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}