public enum Plugin extends Enum<Plugin>
Enum Constant and Description |
---|
Auto
Specifies any media player plugin that is available on the browser and features basic
playback support.
|
DivXPlayer
Specifies the DivX Web Player plugin
|
FlashPlayer
Specifies the Flash Player plugin
|
MatrixSupport
Similar to Auto, specifies any media player plugin that supports
graphics manipulation with transformation matrices as defined by the
MatrixSupport interface.
|
Native
Specifies the browsers' native media handler.
|
None
Specifies No Player plugin
|
PlaylistSupport
Similar to Auto, specifies any media player plugin that supports
client-side playlist management as defined by the PlaylistSupport
interface.
|
QuickTimePlayer
Specifies the QuickTime Player plugin
|
VLCPlayer
Specifies the VLC Media Player plugin
|
WinMediaPlayer
Specifies the Window Media Player™ plugin
|
Modifier and Type | Method and Description |
---|---|
String |
getDownloadURL()
Gets the URL of the plugins' download page
|
String |
toString() |
static Plugin |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Plugin[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Plugin Auto
Basic playback support is as defined by the AbstractMediaPlayer class.
public static final Plugin Native
audio
and video
elements.public static final Plugin QuickTimePlayer
public static final Plugin FlashPlayer
public static final Plugin WinMediaPlayer
public static final Plugin VLCPlayer
public static final Plugin DivXPlayer
public static final Plugin PlaylistSupport
public static final Plugin MatrixSupport
public static final Plugin None
public static Plugin[] values()
for (Plugin c : Plugin.values()) System.out.println(c);
public static Plugin 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 getDownloadURL()
Copyright © 2009-2013. All Rights Reserved.