public enum SecurityStoreType extends Enum<SecurityStoreType>
| Enum Constant and Description |
|---|
DEFAULT |
DKS |
JCEKS |
JKS |
PKCS11 |
PKCS12 |
| Modifier and Type | Method and Description |
|---|---|
static SecurityStoreType |
fromString(String requestedType) |
static String |
getAcceptedValue() |
static SecurityStoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityStoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityStoreType JCEKS
public static final SecurityStoreType JKS
public static final SecurityStoreType DKS
public static final SecurityStoreType PKCS11
public static final SecurityStoreType PKCS12
public static final SecurityStoreType DEFAULT
public final String value
public static SecurityStoreType[] values()
for (SecurityStoreType c : SecurityStoreType.values()) System.out.println(c);
public static SecurityStoreType 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 static SecurityStoreType fromString(String requestedType)
public static String getAcceptedValue()
Copyright © 2023. All rights reserved.