- All Implemented Interfaces:
Serializable,Comparable<KeyStoreAlgorithms>,Constable
KeyStore algorithm
- Author:
- Leonard Woo
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA domain keystore is a collection of keystores presented as a single logical keystore.The proprietary keystore implementation provided by the SunJCE provider.The proprietary keystore implementation provided by the SUN provider.A keystore backed by a PKCS #11 token.The transfer syntax for personal identity information as defined in PKCS #12 specified in RFC 7292 -
Method Summary
Modifier and TypeMethodDescriptiongetType()get algorithm typestatic KeyStoreAlgorithmsReturns the enum constant of this class with the specified name.static KeyStoreAlgorithms[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
JCEKS
The proprietary keystore implementation provided by the SunJCE provider. -
JKS
The proprietary keystore implementation provided by the SUN provider. -
DKS
A domain keystore is a collection of keystores presented as a single logical keystore. It is specified by configuration data whose syntax is described in theDomainLoadStoreParameterclass. -
PKCS11
A keystore backed by a PKCS #11 token. -
PKCS12
The transfer syntax for personal identity information as defined in PKCS #12 specified in RFC 7292
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getType
get algorithm type- Returns:
- type
-