All Downloads are FREE. Search and download functionalities are using the official Maven repository.

checkmarx.wsdl.portal.CxWSCrudEnum Maven / Gradle / Ivy

There is a newer version: 0.4.47
Show newest version
//
// 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 CxWSCrudEnum. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="CxWSCrudEnum">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Create"/>
 *     <enumeration value="Delete"/>
 *     <enumeration value="Update"/>
 *     <enumeration value="View"/>
 *     <enumeration value="Run"/>
 *     <enumeration value="Investigate"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "CxWSCrudEnum") @XmlEnum public enum CxWSCrudEnum { @XmlEnumValue("Create") CREATE("Create"), @XmlEnumValue("Delete") DELETE("Delete"), @XmlEnumValue("Update") UPDATE("Update"), @XmlEnumValue("View") VIEW("View"), @XmlEnumValue("Run") RUN("Run"), @XmlEnumValue("Investigate") INVESTIGATE("Investigate"); private final String value; CxWSCrudEnum(String v) { value = v; } public String value() { return value; } public static CxWSCrudEnum fromValue(String v) { for (CxWSCrudEnum c: CxWSCrudEnum.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy