Enum Class StreamOnline.Type
java.lang.Object
java.lang.Enum<StreamOnline.Type>
com.gmt2001.twitch.eventsub.subscriptions.stream.StreamOnline.Type
- All Implemented Interfaces:
Serializable
,Comparable<StreamOnline.Type>
,Constable
- Enclosing class:
- StreamOnline
Stream types
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA live streamPlaylistA premiere of a new videoRerun of a vod of a previous live streamWatching a movie or TV show together on Prime Video -
Method Summary
Modifier and TypeMethodDescriptionstatic StreamOnline.Type
Returns the enum constant of this class with the specified name.static StreamOnline.Type[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LIVE
A live stream -
PLAYLIST
Playlist -
WATCH_PARTY
Watching a movie or TV show together on Prime Video -
PREMIERE
A premiere of a new video -
RERUN
Rerun of a vod of a previous live stream
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-