public enum RTCPFeedbackType extends java.lang.Enum<RTCPFeedbackType>
Enum Constant and Description |
---|
Compatibility
Use both AVP and AVPF RTP Profile types - RTCP Feedbacks are ON (video media is duplicated in the SDP)
|
Off
Uses only AVP RTP Profile type - RTCP Feedbacks are OFF
|
On
Use only AVPF RTP Profile type - RTCP Feedbacks are ON (will establish media only if the remote peer also supports AVPF!)
|
Modifier and Type | Method and Description |
---|---|
static RTCPFeedbackType |
fromInt(int i) |
static RTCPFeedbackType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RTCPFeedbackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RTCPFeedbackType Off
public static final RTCPFeedbackType Compatibility
public static final RTCPFeedbackType On
public static RTCPFeedbackType[] values()
for (RTCPFeedbackType c : RTCPFeedbackType.values()) System.out.println(c);
public static RTCPFeedbackType 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 static RTCPFeedbackType fromInt(int i)