public static enum Constants.CapabilityType extends java.lang.Enum<Constants.CapabilityType>
| Enum Constant and Description |
|---|
AUDIO_2_IN_AUT
Audio 2-in-1 capability.
|
AUDIO_CODEC
Audio codec capability.
|
AUDIO_NON_CLOCKED_STREAMING
Audio non-clocked streaming capability.
|
AUDIO_RSFEC
Audio RSFEC capability.
|
BFRAME
B-frame capability.
|
CHANNEL_PROFILE
Channel profile capability.
|
CODEC_WITH_RQFEC
Codec with RQFEC capability.
|
DMEC_VERSION
DMEC version capability.
|
H264_FEATURE
H264 feature capability.
|
MINOR_STREAM
Minor stream capability.
|
MULTIPLE_REDUNDANCY
Multiple redundancy capability.
|
P2P
P2P capability.
|
RTP_EXTENSION
RTP extension capability.
|
SVC
SVC capability.
|
VIDEO_CODEC
Video codec capability.
|
VIDEO_FEC
Video FEC capability.
|
VP8_FEATURE
VP8 feature capability.
|
WEBRTC
WebRTC capability.
|
| Modifier and Type | Field and Description |
|---|---|
private int |
value |
| Modifier and Type | Method and Description |
|---|---|
static Constants.CapabilityType |
fromInt(int value)
Converts an integer value to its corresponding CapabilityType enum constant.
|
int |
getValue()
Gets the integer value of the capability type.
|
static Constants.CapabilityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.CapabilityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.CapabilityType CHANNEL_PROFILE
public static final Constants.CapabilityType AUDIO_CODEC
public static final Constants.CapabilityType VIDEO_CODEC
public static final Constants.CapabilityType H264_FEATURE
public static final Constants.CapabilityType VIDEO_FEC
public static final Constants.CapabilityType WEBRTC
public static final Constants.CapabilityType P2P
public static final Constants.CapabilityType AUDIO_RSFEC
public static final Constants.CapabilityType RTP_EXTENSION
public static final Constants.CapabilityType AUDIO_2_IN_AUT
public static final Constants.CapabilityType VP8_FEATURE
public static final Constants.CapabilityType SVC
public static final Constants.CapabilityType DMEC_VERSION
public static final Constants.CapabilityType MULTIPLE_REDUNDANCY
public static final Constants.CapabilityType BFRAME
public static final Constants.CapabilityType MINOR_STREAM
public static final Constants.CapabilityType CODEC_WITH_RQFEC
public static final Constants.CapabilityType AUDIO_NON_CLOCKED_STREAMING
public static Constants.CapabilityType[] values()
for (Constants.CapabilityType c : Constants.CapabilityType.values()) System.out.println(c);
public static Constants.CapabilityType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static Constants.CapabilityType fromInt(int value)
value - The integer value.