public static enum Airing.PremiereStatus extends Enum<Airing.PremiereStatus>
| Enum Constant and Description |
|---|
NONE
This airing is not a premiere airing
|
PREMIERE
This airing is a premiere airing; typically a movie and not a tv show, but not necessarily
|
SEASON_PREMIERE
This airing is a season premiere; typically a tv show
|
SERIES_PREMIERE
This airing is a series premiere; typically a tv show
|
UNKNOWN
And unknown value was received; report the unknown value as a bug ticket for future inclusion
|
| Modifier and Type | Method and Description |
|---|---|
static Airing.PremiereStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Airing.PremiereStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Airing.PremiereStatus NONE
public static final Airing.PremiereStatus PREMIERE
public static final Airing.PremiereStatus SEASON_PREMIERE
public static final Airing.PremiereStatus SERIES_PREMIERE
public static final Airing.PremiereStatus UNKNOWN
public static Airing.PremiereStatus[] values()
for (Airing.PremiereStatus c : Airing.PremiereStatus.values()) System.out.println(c);
public static Airing.PremiereStatus 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 © 2012-2014 Battams, Derek. All Rights Reserved.