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

com.google.api.ads.dfp.jaxws.v201508.Html5Feature Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Html5Feature. * *

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

*

 * <simpleType name="Html5Feature">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="BASIC_SVG"/>
 *     <enumeration value="SVG_FILTERS"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Html5Feature") @XmlEnum public enum Html5Feature { /** * * Requires a basic SVG animation. * * */ BASIC_SVG, /** * * Requires support for SVG filter based animation. * * */ SVG_FILTERS, /** * * The feature is not known or defined in newer versions. * * */ UNKNOWN; public String value() { return name(); } public static Html5Feature fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy