public enum ItunesPodcastType extends java.lang.Enum<ItunesPodcastType>
Enum Constant and Description |
---|
EPISODIC
For non-chronological episodes that will behave as they have for years and download the latest episode.
|
SERIAL
for chronological episodes that should be consumed oldest to newest.
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<java.lang.String,java.lang.Object> |
toMap() |
static ItunesPodcastType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ItunesPodcastType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItunesPodcastType EPISODIC
public static final ItunesPodcastType SERIAL
public static ItunesPodcastType[] values()
for (ItunesPodcastType c : ItunesPodcastType.values()) System.out.println(c);
public static ItunesPodcastType 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 nullpublic java.util.Map<java.lang.String,java.lang.Object> toMap()