public enum ItunesMedia extends Enum<ItunesMedia>
| Enum Constant and Description |
|---|
ALL |
AUDIO_BOOK |
EBOOK |
MOVIE |
MUSIC |
MUSIC_VIDEO |
PODCAST |
SHORT_FILM |
SOFTWARE |
TV_SHOW |
| Modifier and Type | Method and Description |
|---|---|
String |
getParameterValue() |
static ItunesMedia |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItunesMedia[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItunesMedia ALL
public static final ItunesMedia MOVIE
public static final ItunesMedia MUSIC
public static final ItunesMedia EBOOK
public static final ItunesMedia TV_SHOW
public static final ItunesMedia PODCAST
public static final ItunesMedia SOFTWARE
public static final ItunesMedia SHORT_FILM
public static final ItunesMedia AUDIO_BOOK
public static final ItunesMedia MUSIC_VIDEO
public static ItunesMedia[] values()
for (ItunesMedia c : ItunesMedia.values()) System.out.println(c);
public static ItunesMedia 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 nullpublic String getParameterValue()
Copyright © 2018. All rights reserved.