checkmarx.wsdl.portal.PivotClientDateRanges 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.XmlType;
/**
* Java class for PivotClientDateRanges.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="PivotClientDateRanges">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ALL"/>
* <enumeration value="PAST_DAY"/>
* <enumeration value="PAST_WEEK"/>
* <enumeration value="PAST_MONTH"/>
* <enumeration value="PAST_3_MONTH"/>
* <enumeration value="PAST_YEAR"/>
* <enumeration value="CUSTOM"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "PivotClientDateRanges")
@XmlEnum
public enum PivotClientDateRanges {
ALL,
PAST_DAY,
PAST_WEEK,
PAST_MONTH,
PAST_3_MONTH,
PAST_YEAR,
CUSTOM;
public String value() {
return name();
}
public static PivotClientDateRanges fromValue(String v) {
return valueOf(v);
}
}