public enum KeyStoreType extends java.lang.Enum<KeyStoreType>
| Enum Constant | Description |
|---|---|
LUNA_HARDWARE |
|
NCIPHER_HARDWARE |
|
PKCS11_HARDWARE |
|
PKCS12_SOFTWARE |
| Modifier and Type | Method | Description |
|---|---|---|
static KeyStoreType |
fromId(java.lang.String id) |
|
java.lang.String |
generateKeyId(java.lang.String keyAlias) |
|
java.lang.String |
getId() |
|
java.lang.String |
getName() |
|
static KeyStoreType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static KeyStoreType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyStoreType PKCS12_SOFTWARE
public static final KeyStoreType PKCS11_HARDWARE
public static final KeyStoreType LUNA_HARDWARE
public static final KeyStoreType NCIPHER_HARDWARE
public static KeyStoreType[] values()
for (KeyStoreType c : KeyStoreType.values()) System.out.println(c);
public static KeyStoreType 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 getId()
public java.lang.String getName()
public java.lang.String generateKeyId(java.lang.String keyAlias)
public static KeyStoreType fromId(java.lang.String id)