public enum SecureStoreFormat extends Enum<SecureStoreFormat>
Enum Constant and Description |
---|
JKS
A Java KeyStore (JKS).
|
PKCS12
PKCS #12.
|
Modifier and Type | Method and Description |
---|---|
static SecureStoreFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecureStoreFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecureStoreFormat JKS
public static final SecureStoreFormat PKCS12
public static SecureStoreFormat 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 SecureStoreFormat[] values()
for (SecureStoreFormat c : SecureStoreFormat.values()) System.out.println(c);
Copyright 2019-2024 Solace Corporation. All rights reserved.