Package org.conscrypt.ct
Enum DigitallySigned.SignatureAlgorithm
- java.lang.Object
-
- java.lang.Enum<DigitallySigned.SignatureAlgorithm>
-
- org.conscrypt.ct.DigitallySigned.SignatureAlgorithm
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DigitallySigned.SignatureAlgorithm>
- Enclosing class:
- DigitallySigned
public static enum DigitallySigned.SignatureAlgorithm extends java.lang.Enum<DigitallySigned.SignatureAlgorithm>
-
-
Field Summary
Fields Modifier and Type Field Description private static DigitallySigned.SignatureAlgorithm[]
values
-
Constructor Summary
Constructors Modifier Constructor Description private
SignatureAlgorithm()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DigitallySigned.SignatureAlgorithm
valueOf(int ord)
Returns the enum constant of this type with the specified name.static DigitallySigned.SignatureAlgorithm
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DigitallySigned.SignatureAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANONYMOUS
public static final DigitallySigned.SignatureAlgorithm ANONYMOUS
-
RSA
public static final DigitallySigned.SignatureAlgorithm RSA
-
DSA
public static final DigitallySigned.SignatureAlgorithm DSA
-
ECDSA
public static final DigitallySigned.SignatureAlgorithm ECDSA
-
-
Field Detail
-
values
private static DigitallySigned.SignatureAlgorithm[] values
-
-
Method Detail
-
values
public static DigitallySigned.SignatureAlgorithm[] 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 (DigitallySigned.SignatureAlgorithm c : DigitallySigned.SignatureAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DigitallySigned.SignatureAlgorithm 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
-
valueOf
public static DigitallySigned.SignatureAlgorithm valueOf(int ord)
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:
ord
- 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
-
-