public enum ZRTPKeyAgreement extends java.lang.Enum<ZRTPKeyAgreement>
Enum Constant and Description |
---|
dh2k
DH2k (Finite-Field Diffie-Hellman with 2048-bit prime)
|
dh3k
DH3k (Finite-Field Diffie-Hellman with 3072-bit prime)
|
ec25
EC25 (Elliptic Curve Diffie-Hellman with 256-bit prime)
|
ec38
EC38 (Elliptic Curve Diffie-Hellman with 384-bit prime)
|
mult
MULT (Multistream) AUTOMATIC! DO NOT CONFIGURE! NOT SUPPORTED
|
prsh
PRSH (Preshared) NOT SUPPORTED
|
Modifier and Type | Method and Description |
---|---|
static ZRTPKeyAgreement |
fromInt(int i) |
static ZRTPKeyAgreement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZRTPKeyAgreement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZRTPKeyAgreement dh3k
public static final ZRTPKeyAgreement dh2k
public static final ZRTPKeyAgreement ec25
public static final ZRTPKeyAgreement ec38
public static final ZRTPKeyAgreement prsh
public static final ZRTPKeyAgreement mult
public static ZRTPKeyAgreement[] values()
for (ZRTPKeyAgreement c : ZRTPKeyAgreement.values()) System.out.println(c);
public static ZRTPKeyAgreement 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 ZRTPKeyAgreement fromInt(int i)