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