Package io.openvidu.java.client
Enum VideoCodec
- java.lang.Object
-
- java.lang.Enum<VideoCodec>
-
- io.openvidu.java.client.VideoCodec
-
- All Implemented Interfaces:
Serializable
,Comparable<VideoCodec>
public enum VideoCodec extends Enum<VideoCodec>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description H264
MEDIA_SERVER_PREFERRED
NONE
VP8
VP9
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VideoCodec
valueOf(String name)
Returns the enum constant of this type with the specified name.static VideoCodec[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MEDIA_SERVER_PREFERRED
public static final VideoCodec MEDIA_SERVER_PREFERRED
-
NONE
public static final VideoCodec NONE
-
VP8
public static final VideoCodec VP8
-
VP9
public static final VideoCodec VP9
-
H264
public static final VideoCodec H264
-
-
Method Detail
-
values
public static VideoCodec[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VideoCodec c : VideoCodec.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VideoCodec valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-