public enum BroadcastStatus extends Enum<BroadcastStatus>
Enum Constant and Description |
---|
CAPTURING |
FINISHING |
IDLE |
PREPARED |
RECONNECTING |
STARTING |
Modifier and Type | Method and Description |
---|---|
static BroadcastStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BroadcastStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BroadcastStatus IDLE
public static final BroadcastStatus STARTING
public static final BroadcastStatus PREPARED
public static final BroadcastStatus CAPTURING
public static final BroadcastStatus RECONNECTING
public static final BroadcastStatus FINISHING
public static BroadcastStatus[] values()
for (BroadcastStatus c : BroadcastStatus.values()) System.out.println(c);
public static BroadcastStatus 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 null