public enum CryptoSuite extends Enum<CryptoSuite>
| Enum Constant and Description |
|---|
AES_128_CM_HMAC_SHA1_32 |
AES_128_CM_HMAC_SHA1_80 |
AES_256_CM_HMAC_SHA1_32 |
AES_256_CM_HMAC_SHA1_80 |
| Modifier and Type | Method and Description |
|---|---|
static CryptoSuite |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptoSuite[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptoSuite AES_128_CM_HMAC_SHA1_32
public static final CryptoSuite AES_128_CM_HMAC_SHA1_80
public static final CryptoSuite AES_256_CM_HMAC_SHA1_32
public static final CryptoSuite AES_256_CM_HMAC_SHA1_80
public static CryptoSuite[] values()
for (CryptoSuite c : CryptoSuite.values()) System.out.println(c);
public static CryptoSuite 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 nullCopyright © 2015 Kurento. All rights reserved.