public enum SSLCipherAlgorithm extends java.lang.Enum<SSLCipherAlgorithm>
| Enum Constant and Description |
|---|
ssl_calg_3des |
ssl_calg_aes |
ssl_calg_aes_gcm |
ssl_calg_camellia |
ssl_calg_chacha20 |
ssl_calg_des |
ssl_calg_fortezza |
ssl_calg_idea |
ssl_calg_null |
ssl_calg_rc2 |
ssl_calg_rc4 |
ssl_calg_seed |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static SSLCipherAlgorithm |
valueOf(int value) |
static SSLCipherAlgorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SSLCipherAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SSLCipherAlgorithm ssl_calg_null
public static final SSLCipherAlgorithm ssl_calg_rc4
public static final SSLCipherAlgorithm ssl_calg_rc2
public static final SSLCipherAlgorithm ssl_calg_des
public static final SSLCipherAlgorithm ssl_calg_3des
public static final SSLCipherAlgorithm ssl_calg_idea
public static final SSLCipherAlgorithm ssl_calg_fortezza
public static final SSLCipherAlgorithm ssl_calg_aes
public static final SSLCipherAlgorithm ssl_calg_camellia
public static final SSLCipherAlgorithm ssl_calg_seed
public static final SSLCipherAlgorithm ssl_calg_aes_gcm
public static final SSLCipherAlgorithm ssl_calg_chacha20
public static SSLCipherAlgorithm[] values()
for (SSLCipherAlgorithm c : SSLCipherAlgorithm.values()) System.out.println(c);
public static SSLCipherAlgorithm 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 SSLCipherAlgorithm valueOf(int value)