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