checkmarx.wsdl.portal.LicenseEdition Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.11.17 at 10:51:56 PM EST
//
package checkmarx.wsdl.portal;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LicenseEdition.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="LicenseEdition">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="SDLC"/>
* <enumeration value="SecurityGate"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "LicenseEdition")
@XmlEnum
public enum LicenseEdition {
SDLC("SDLC"),
@XmlEnumValue("SecurityGate")
SECURITY_GATE("SecurityGate");
private final String value;
LicenseEdition(String v) {
value = v;
}
public String value() {
return value;
}
public static LicenseEdition fromValue(String v) {
for (LicenseEdition c: LicenseEdition.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}