public enum MediaTranscodingState extends Enum<MediaTranscodingState>
Enum Constant and Description |
---|
NOT_TRANSCODING |
TRANSCODING |
Modifier and Type | Method and Description |
---|---|
static MediaTranscodingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MediaTranscodingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MediaTranscodingState TRANSCODING
public static final MediaTranscodingState NOT_TRANSCODING
public static MediaTranscodingState[] values()
for (MediaTranscodingState c : MediaTranscodingState.values()) System.out.println(c);
public static MediaTranscodingState 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 © 2022 Kurento. All rights reserved.