public enum SigningAlgorithms extends java.lang.Enum<SigningAlgorithms>
Enum Constant and Description |
---|
SHA1WithRSA |
SHA256WithRSA |
Modifier and Type | Method and Description |
---|---|
static SigningAlgorithms |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static SigningAlgorithms |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SigningAlgorithms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigningAlgorithms SHA1WithRSA
public static final SigningAlgorithms SHA256WithRSA
public static SigningAlgorithms[] values()
for (SigningAlgorithms c : SigningAlgorithms.values()) System.out.println(c);
public static SigningAlgorithms 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 java.lang.String value()
public static SigningAlgorithms fromValue(java.lang.String v)