public enum ItunesPodcastEpisodeType extends java.lang.Enum<ItunesPodcastEpisodeType>
Enum Constant and Description |
---|
BONUS
for extra content related to a show, season, or episode.
|
FULL
For normal episodes.
|
TRAILER
to promote an upcoming show, season, or episode.
|
Modifier and Type | Method and Description |
---|---|
static ItunesPodcastEpisodeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItunesPodcastEpisodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItunesPodcastEpisodeType FULL
public static final ItunesPodcastEpisodeType TRAILER
public static final ItunesPodcastEpisodeType BONUS
public static ItunesPodcastEpisodeType[] values()
for (ItunesPodcastEpisodeType c : ItunesPodcastEpisodeType.values()) System.out.println(c);
public static ItunesPodcastEpisodeType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null