public static enum DigitallySigned.SignatureAlgorithm extends Enum<DigitallySigned.SignatureAlgorithm>
| Modifier and Type | Method and Description |
|---|---|
static DigitallySigned.SignatureAlgorithm |
valueOf(int ord) |
static DigitallySigned.SignatureAlgorithm |
valueOf(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.
|
public static final DigitallySigned.SignatureAlgorithm ANONYMOUS
public static final DigitallySigned.SignatureAlgorithm RSA
public static final DigitallySigned.SignatureAlgorithm DSA
public static final DigitallySigned.SignatureAlgorithm ECDSA
public static DigitallySigned.SignatureAlgorithm[] values()
for (DigitallySigned.SignatureAlgorithm c : DigitallySigned.SignatureAlgorithm.values()) System.out.println(c);
public static DigitallySigned.SignatureAlgorithm 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 nullpublic static DigitallySigned.SignatureAlgorithm valueOf(int ord)