public enum PodcastAttribute extends Enum<PodcastAttribute>
| Enum Constant and Description |
|---|
ALL |
ARTIST |
AUTHOR |
DESCRIPTION |
GENRE |
KEYWORDS |
LANGUAGE |
RATING |
TITLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getParameterValue() |
static PodcastAttribute |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PodcastAttribute[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PodcastAttribute ALL
public static final PodcastAttribute TITLE
public static final PodcastAttribute GENRE
public static final PodcastAttribute AUTHOR
public static final PodcastAttribute ARTIST
public static final PodcastAttribute RATING
public static final PodcastAttribute LANGUAGE
public static final PodcastAttribute KEYWORDS
public static final PodcastAttribute DESCRIPTION
public static PodcastAttribute[] values()
for (PodcastAttribute c : PodcastAttribute.values()) System.out.println(c);
public static PodcastAttribute 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.