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