checkmarx.wsdl.portal.CxReportSnippetsMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cx-spring-boot-sdk Show documentation
Show all versions of cx-spring-boot-sdk Show documentation
Checkmarx Java Spring Boot SDK
//
// 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 CxReportSnippetsMode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="CxReportSnippetsMode">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="None"/>
* <enumeration value="SourceAndDestination"/>
* <enumeration value="Full"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "CxReportSnippetsMode")
@XmlEnum
public enum CxReportSnippetsMode {
@XmlEnumValue("None")
NONE("None"),
@XmlEnumValue("SourceAndDestination")
SOURCE_AND_DESTINATION("SourceAndDestination"),
@XmlEnumValue("Full")
FULL("Full");
private final String value;
CxReportSnippetsMode(String v) {
value = v;
}
public String value() {
return value;
}
public static CxReportSnippetsMode fromValue(String v) {
for (CxReportSnippetsMode c: CxReportSnippetsMode.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}