public enum SigningAlgorithm extends Enum<SigningAlgorithm>
| Enum Constant and Description |
|---|
SHA256_WITH_RSA |
| Modifier and Type | Method and Description |
|---|---|
String |
getAlgorithmName() |
SigningService |
getSigningService() |
static SigningAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SigningAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigningAlgorithm SHA256_WITH_RSA
public static SigningAlgorithm[] values()
for (SigningAlgorithm c : SigningAlgorithm.values()) System.out.println(c);
public static SigningAlgorithm 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 String getAlgorithmName()
public SigningService getSigningService()
Copyright © 2020. All rights reserved.