public enum SrtpControlType extends Enum<SrtpControlType>
| Enum Constant and Description |
|---|
DTLS_SRTP
Datagram Transport Layer Security (DTLS) Extension to Establish Keys for
the Secure Real-time Transport Protocol (SRTP)
|
MIKEY
Multimedia Internet KEYing (RFC 3830)
|
NULL
A no-op implementation.
|
SDES
Session Description Protocol (SDP) Security Descriptions for Media
Streams (RFC 4568)
|
ZRTP
ZRTP: Media Path Key Agreement for Unicast Secure RTP (RFC 6189)
|
| Modifier and Type | Method and Description |
|---|---|
static SrtpControlType |
fromString(String protoName) |
String |
toString() |
static SrtpControlType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SrtpControlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SrtpControlType DTLS_SRTP
public static final SrtpControlType MIKEY
public static final SrtpControlType SDES
public static final SrtpControlType ZRTP
public static final SrtpControlType NULL
public static SrtpControlType[] values()
for (SrtpControlType c : SrtpControlType.values()) System.out.println(c);
public static SrtpControlType 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<SrtpControlType>public static SrtpControlType fromString(String protoName)
valueOf(String)Copyright © 2021 jitsi.org. All rights reserved.