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