public enum VideoStreamingState extends Enum<VideoStreamingState>
| Enum Constant and Description |
|---|
NOT_STREAMABLE |
STREAMABLE |
| Modifier and Type | Method and Description |
|---|---|
static VideoStreamingState |
valueForString(String value) |
static VideoStreamingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoStreamingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoStreamingState STREAMABLE
public static final VideoStreamingState NOT_STREAMABLE
public static VideoStreamingState[] values()
for (VideoStreamingState c : VideoStreamingState.values()) System.out.println(c);
public static VideoStreamingState 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 nullpublic static VideoStreamingState valueForString(String value)