public enum KeyStoreType extends java.lang.Enum<KeyStoreType>
| Enum Constant and Description |
|---|
JCEKS
The proprietary keystore implementation provided by the SunJCE provider.
|
JKS
The proprietary keystore implementation provided by the SUN provider.
|
PKCS12
The transfer syntax for personal identity information as defined in PKCS #12.
|
| Modifier and Type | Method and Description |
|---|---|
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 JCEKS
public static final KeyStoreType JKS
public static final KeyStoreType PKCS12
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 null