public enum KeystoreType extends Enum<KeystoreType>
KeystoreType for algorithm that are used to create KeyStore objects.| Enum Constant and Description |
|---|
DSA
The enum constant for DSA algorithm.
|
JCEKS
The enum constant for JCEKS algorithm.
|
JKS
The enum constant for JKS algorithm.
|
PKCS12
The enum constant for PKCS12 algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
static KeystoreType |
valueOf(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 DSA
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(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 nullCopyright © 2015–2019 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.