public enum Html5Feature extends Enum<Html5Feature>
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>
| Enum Constant and Description |
|---|
BASIC_SVG
Requires a basic SVG animation.
|
SVG_FILTERS
Requires support for SVG filter based animation.
|
UNKNOWN
The feature is not known or defined in newer versions.
|
| Modifier and Type | Method and Description |
|---|---|
static Html5Feature |
fromValue(String v) |
String |
value() |
static Html5Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Html5Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Html5Feature BASIC_SVG
public static final Html5Feature SVG_FILTERS
public static final Html5Feature UNKNOWN
public static Html5Feature[] values()
for (Html5Feature c : Html5Feature.values()) System.out.println(c);
public static Html5Feature valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static Html5Feature fromValue(String v)
Copyright © 2018. All Rights Reserved.