public static enum MediaTitle.EnumContentCategory extends Enum<MediaTitle.EnumContentCategory>
Enum Constant and Description |
---|
VALUE_MOVIE |
VALUE_MUSIC |
VALUE_TV_SHOW |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static MediaTitle.EnumContentCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaTitle.EnumContentCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="MOVIE") public static final MediaTitle.EnumContentCategory VALUE_MOVIE
@SerializedName(value="MUSIC") public static final MediaTitle.EnumContentCategory VALUE_MUSIC
@SerializedName(value="TV_SHOW") public static final MediaTitle.EnumContentCategory VALUE_TV_SHOW
public static MediaTitle.EnumContentCategory[] values()
for (MediaTitle.EnumContentCategory c : MediaTitle.EnumContentCategory.values()) System.out.println(c);
public static MediaTitle.EnumContentCategory 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 toString()
toString
in class Enum<MediaTitle.EnumContentCategory>
Copyright © 2023. All rights reserved.