public static enum QueueData.QueueType extends Enum<QueueData.QueueType>
| Enum Constant and Description |
|---|
ALBUM
Music album
|
AUDIOBOOK
Audiobook
|
LIVE_TV
Live TV channel
|
MOVIE
Movie
|
PLAYLIST
Music playlist, such as private playlist, public playlist,
auto-generated playlist, etc.
|
PODCAST_SERIES
Podcast series
|
RADIO_STATION
Traditional radio station
|
TV_SERIES
TV Series
|
VIDEO_PLAYLIST
Video playlist
|
| Modifier and Type | Method and Description |
|---|---|
static QueueData.QueueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueData.QueueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueData.QueueType ALBUM
public static final QueueData.QueueType PLAYLIST
public static final QueueData.QueueType AUDIOBOOK
public static final QueueData.QueueType RADIO_STATION
public static final QueueData.QueueType PODCAST_SERIES
public static final QueueData.QueueType TV_SERIES
public static final QueueData.QueueType VIDEO_PLAYLIST
public static final QueueData.QueueType LIVE_TV
public static final QueueData.QueueType MOVIE
public static QueueData.QueueType[] values()
for (QueueData.QueueType c : QueueData.QueueType.values()) System.out.println(c);
public static QueueData.QueueType 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 nullCopyright © 2022. All rights reserved.