Package com.brightcove.player.playback
Enum PlaybackNotification.StreamType
- java.lang.Object
-
- java.lang.Enum<PlaybackNotification.StreamType>
-
- com.brightcove.player.playback.PlaybackNotification.StreamType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PlaybackNotification.StreamType>
- Enclosing class:
- PlaybackNotification
public static enum PlaybackNotification.StreamType extends java.lang.Enum<PlaybackNotification.StreamType>
Types of media to display an ongoing notification for.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Audio
AudioLive
AudioLiveDvr
Video
VideoLive
VideoLiveDvr
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlaybackNotification.StreamType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PlaybackNotification.StreamType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Audio
public static final PlaybackNotification.StreamType Audio
-
Video
public static final PlaybackNotification.StreamType Video
-
AudioLive
public static final PlaybackNotification.StreamType AudioLive
-
VideoLive
public static final PlaybackNotification.StreamType VideoLive
-
AudioLiveDvr
public static final PlaybackNotification.StreamType AudioLiveDvr
-
VideoLiveDvr
public static final PlaybackNotification.StreamType VideoLiveDvr
-
-
Method Detail
-
values
public static PlaybackNotification.StreamType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PlaybackNotification.StreamType c : PlaybackNotification.StreamType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PlaybackNotification.StreamType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-