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

com.google.api.ads.dfp.jaxws.v201505.DayOfWeek Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201505;

import javax.xml.bind.annotation.XmlEnum;
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="MONDAY"/>
 *     <enumeration value="TUESDAY"/>
 *     <enumeration value="WEDNESDAY"/>
 *     <enumeration value="THURSDAY"/>
 *     <enumeration value="FRIDAY"/>
 *     <enumeration value="SATURDAY"/>
 *     <enumeration value="SUNDAY"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "DayOfWeek") @XmlEnum public enum DayOfWeek { /** * * The day of week named Monday. * * */ MONDAY, /** * * The day of week named Tuesday. * * */ TUESDAY, /** * * The day of week named Wednesday. * * */ WEDNESDAY, /** * * The day of week named Thursday. * * */ THURSDAY, /** * * The day of week named Friday. * * */ FRIDAY, /** * * The day of week named Saturday. * * */ SATURDAY, /** * * The day of week named Sunday. * * */ SUNDAY; public String value() { return name(); } public static DayOfWeek fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy