|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DivXPlayer.BufferingMode>
com.bramosystems.oss.player.core.client.ui.DivXPlayer.BufferingMode
public static enum DivXPlayer.BufferingMode
An enum of buffering modes for DivXPlayer widget. The mode is used to specify how the DivX Web Player should buffer downloaded data before attempting to start playback.
Enum Constant Summary | |
---|---|
AUTO
The player analyses the download speed and tries to buffer just enough so that uninterrupted progressive playback can happen at the end of the buffer period. |
|
FULL
The player will always buffer the full video file before starting playback. |
|
NULL
The player does only very minimal buffering and starts playing as soon as data is available. |
Method Summary | |
---|---|
static DivXPlayer.BufferingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DivXPlayer.BufferingMode[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DivXPlayer.BufferingMode NULL
public static final DivXPlayer.BufferingMode AUTO
public static final DivXPlayer.BufferingMode FULL
Method Detail |
---|
public static DivXPlayer.BufferingMode[] values()
for (DivXPlayer.BufferingMode c : DivXPlayer.BufferingMode.values()) System.out.println(c);
public static DivXPlayer.BufferingMode 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 null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |