public enum IdType extends Enum<IdType>
| Enum Constant and Description |
|---|
IMDB |
TMDB |
TRAKT_EPISODE |
TRAKT_MOVIE |
TRAKT_SHOW |
TVDB |
TVRAGE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static IdType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdType TRAKT_MOVIE
public static final IdType TRAKT_SHOW
public static final IdType TRAKT_EPISODE
public static final IdType IMDB
public static final IdType TMDB
public static final IdType TVDB
public static final IdType TVRAGE
public static IdType[] values()
for (IdType c : IdType.values()) System.out.println(c);
public static IdType 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 nullCopyright © 2016-2017. All Rights Reserved.