public static enum Airing.FinaleStatus extends Enum<Airing.FinaleStatus>
| Enum Constant and Description |
|---|
NONE
The airing is not a finale
|
SEASON_FINALE
The airing is a season finale; typically a tv show
|
SERIES_FINALE
The airing is a series finale; typically a tv show
|
UNKNOWN
An unknown value was received; report the unknown value as a bug ticket for future inclusion
|
| Modifier and Type | Method and Description |
|---|---|
static Airing.FinaleStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Airing.FinaleStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Airing.FinaleStatus NONE
public static final Airing.FinaleStatus SEASON_FINALE
public static final Airing.FinaleStatus SERIES_FINALE
public static final Airing.FinaleStatus UNKNOWN
public static Airing.FinaleStatus[] values()
for (Airing.FinaleStatus c : Airing.FinaleStatus.values()) System.out.println(c);
public static Airing.FinaleStatus 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.