checkmarx.wsdl.portal.DayOfWeek 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 DayOfWeek.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="DayOfWeek">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="Sunday"/>
* <enumeration value="Monday"/>
* <enumeration value="Tuesday"/>
* <enumeration value="Wednesday"/>
* <enumeration value="Thursday"/>
* <enumeration value="Friday"/>
* <enumeration value="Saturday"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "DayOfWeek")
@XmlEnum
public enum DayOfWeek {
@XmlEnumValue("Sunday")
SUNDAY("Sunday"),
@XmlEnumValue("Monday")
MONDAY("Monday"),
@XmlEnumValue("Tuesday")
TUESDAY("Tuesday"),
@XmlEnumValue("Wednesday")
WEDNESDAY("Wednesday"),
@XmlEnumValue("Thursday")
THURSDAY("Thursday"),
@XmlEnumValue("Friday")
FRIDAY("Friday"),
@XmlEnumValue("Saturday")
SATURDAY("Saturday");
private final String value;
DayOfWeek(String v) {
value = v;
}
public String value() {
return value;
}
public static DayOfWeek fromValue(String v) {
for (DayOfWeek c: DayOfWeek.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}