Package org.mozilla.jss.ssl
Enum SSLCipherAlgorithm
- java.lang.Object
-
- java.lang.Enum<SSLCipherAlgorithm>
-
- org.mozilla.jss.ssl.SSLCipherAlgorithm
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SSLCipherAlgorithm>
public enum SSLCipherAlgorithm extends java.lang.Enum<SSLCipherAlgorithm>
-
-
Enum Constant Summary
Enum Constants Enum Constant 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
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static SSLCipherAlgorithm
valueOf(int value)
Returns the enum constant of this type with the specified name.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.
-
-
-
Enum Constant Detail
-
ssl_calg_null
public static final SSLCipherAlgorithm ssl_calg_null
-
ssl_calg_rc4
public static final SSLCipherAlgorithm ssl_calg_rc4
-
ssl_calg_rc2
public static final SSLCipherAlgorithm ssl_calg_rc2
-
ssl_calg_des
public static final SSLCipherAlgorithm ssl_calg_des
-
ssl_calg_3des
public static final SSLCipherAlgorithm ssl_calg_3des
-
ssl_calg_idea
public static final SSLCipherAlgorithm ssl_calg_idea
-
ssl_calg_fortezza
public static final SSLCipherAlgorithm ssl_calg_fortezza
-
ssl_calg_aes
public static final SSLCipherAlgorithm ssl_calg_aes
-
ssl_calg_camellia
public static final SSLCipherAlgorithm ssl_calg_camellia
-
ssl_calg_seed
public static final SSLCipherAlgorithm ssl_calg_seed
-
ssl_calg_aes_gcm
public static final SSLCipherAlgorithm ssl_calg_aes_gcm
-
ssl_calg_chacha20
public static final SSLCipherAlgorithm ssl_calg_chacha20
-
-
Method Detail
-
values
public static SSLCipherAlgorithm[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SSLCipherAlgorithm c : SSLCipherAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SSLCipherAlgorithm valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getValue
public int getValue()
-
valueOf
public static SSLCipherAlgorithm valueOf(int value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-