Package io.javalin.community.ssl
Enum SslConfigException.Types
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum SslConfigException.Types extends Enum<SslConfigException.Types>
Types of errors that can occur when configuring SSL.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringmessageprivate final Stringnameprivate final Integerordinalprivate final EnumEntries<SslConfigException.Types>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description MISSING_CERT_AND_KEY_FILEMULTIPLE_IDENTITY_LOADING_OPTIONS
-
Method Summary
Modifier and Type Method Description final SslConfigException.TypesvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<SslConfigException.Types>values()Returns an array containing the constants of this enum type, in the order they're declared. final StringgetMessage()final EnumEntries<SslConfigException.Types>getEntries()Types of errors that can occur when configuring SSL. -
-
Method Detail
-
valueOf
final SslConfigException.Types valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<SslConfigException.Types> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getMessage
final String getMessage()
-
getEntries
final EnumEntries<SslConfigException.Types> getEntries()
Types of errors that can occur when configuring SSL.
-
-
-
-