|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Plugin>
com.bramosystems.oss.player.core.client.Plugin
public enum Plugin
An enum of supported media player plugins
Enum Constant Summary | |
---|---|
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. |
|
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 |
Method Summary | |
---|---|
String |
getDownloadURL()
Gets the URL of the plugins' download page |
PluginVersion |
getVersion()
Gets the minimum version required by this plugin |
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Plugin Auto
Basic playback support is as defined by the AbstractMediaPlayer class.
PlayerUtil.getPlayer(java.lang.String, boolean, java.lang.String, java.lang.String)
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
PlayerUtil.getPlayer(Plugin, java.lang.String, boolean, java.lang.String, java.lang.String)
,
PlaylistSupport
public static final Plugin MatrixSupport
PlayerUtil.getPlayer(Plugin, java.lang.String, boolean, java.lang.String, java.lang.String)
,
MatrixSupport
Method Detail |
---|
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 name
NullPointerException
- if the argument is nullpublic String getDownloadURL()
public PluginVersion getVersion()
public String toString()
toString
in class Enum<Plugin>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |