public static enum Conference.VideoCodec extends Enum<Conference.VideoCodec>
Enum Constant and Description |
---|
H264
H.264 AVC
|
VP8
WebM VP8 codec
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Conference.VideoCodec |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.VideoCodec[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.VideoCodec VP8
public static final Conference.VideoCodec H264
public static Conference.VideoCodec[] values()
for (Conference.VideoCodec c : Conference.VideoCodec.values()) System.out.println(c);
public static Conference.VideoCodec 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 String toString()
toString
in class Enum<Conference.VideoCodec>
Copyright © 2017. All rights reserved.