public static enum Airing.LiveStatus extends Enum<Airing.LiveStatus>
| Enum Constant and Description |
|---|
DELAY
This airing is on a delay; typically a rebroadcast of a live event
|
LIVE
This airing is live
|
NONE
No status was provided; this is valid and acceptable
|
TAPE
This airing is taped
|
UNKNOWN
An unknown value was provided; report the unknown value as a bug ticket for future inclusion
|
| Modifier and Type | Method and Description |
|---|---|
static Airing.LiveStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Airing.LiveStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Airing.LiveStatus NONE
public static final Airing.LiveStatus LIVE
public static final Airing.LiveStatus DELAY
public static final Airing.LiveStatus TAPE
public static final Airing.LiveStatus UNKNOWN
public static Airing.LiveStatus[] values()
for (Airing.LiveStatus c : Airing.LiveStatus.values()) System.out.println(c);
public static Airing.LiveStatus 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.