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