public enum VideoType extends Enum<VideoType>
Java class for VideoType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="VideoType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ADOBE"/>
<enumeration value="REALPLAYER"/>
<enumeration value="QUICKTIME"/>
<enumeration value="WINDOWSMEDIA"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ADOBE |
QUICKTIME |
REALPLAYER |
WINDOWSMEDIA |
| Modifier and Type | Method and Description |
|---|---|
static VideoType |
fromValue(String v) |
String |
value() |
static VideoType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoType ADOBE
public static final VideoType REALPLAYER
public static final VideoType QUICKTIME
public static final VideoType WINDOWSMEDIA
public static VideoType[] values()
for (VideoType c : VideoType.values()) System.out.println(c);
public static VideoType 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()
Copyright © 2023. All rights reserved.