Package com.helger.security.keystore
Enum EKeyStoreLoadErrorText
- java.lang.Object
-
- java.lang.Enum<EKeyStoreLoadErrorText>
-
- com.helger.security.keystore.EKeyStoreLoadErrorText
-
- All Implemented Interfaces:
com.helger.commons.text.display.IHasDisplayText,com.helger.commons.text.display.IHasDisplayTextWithArgs,Serializable,Comparable<EKeyStoreLoadErrorText>
@Translatable public enum EKeyStoreLoadErrorText extends Enum<EKeyStoreLoadErrorText> implements com.helger.commons.text.display.IHasDisplayTextWithArgs
-
-
Enum Constant Summary
Enum Constants Enum Constant Description KEY_INVALID_ALIASKEY_INVALID_PASSWORDKEY_INVALID_TYPEKEY_LOAD_ERRORKEY_NO_ALIASKEY_NO_PASSWORDKEYSTORE_INVALID_PASSWORDKEYSTORE_LOAD_ERROR_FORMAT_ERRORKEYSTORE_LOAD_ERROR_NON_EXISTINGKEYSTORE_NO_PATH
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDisplayText(Locale aContentLocale)static EKeyStoreLoadErrorTextvalueOf(String name)Returns the enum constant of this type with the specified name.static EKeyStoreLoadErrorText[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
KEYSTORE_NO_PATH
public static final EKeyStoreLoadErrorText KEYSTORE_NO_PATH
-
KEYSTORE_LOAD_ERROR_NON_EXISTING
public static final EKeyStoreLoadErrorText KEYSTORE_LOAD_ERROR_NON_EXISTING
-
KEYSTORE_INVALID_PASSWORD
public static final EKeyStoreLoadErrorText KEYSTORE_INVALID_PASSWORD
-
KEYSTORE_LOAD_ERROR_FORMAT_ERROR
public static final EKeyStoreLoadErrorText KEYSTORE_LOAD_ERROR_FORMAT_ERROR
-
KEY_NO_ALIAS
public static final EKeyStoreLoadErrorText KEY_NO_ALIAS
-
KEY_NO_PASSWORD
public static final EKeyStoreLoadErrorText KEY_NO_PASSWORD
-
KEY_INVALID_ALIAS
public static final EKeyStoreLoadErrorText KEY_INVALID_ALIAS
-
KEY_INVALID_TYPE
public static final EKeyStoreLoadErrorText KEY_INVALID_TYPE
-
KEY_INVALID_PASSWORD
public static final EKeyStoreLoadErrorText KEY_INVALID_PASSWORD
-
KEY_LOAD_ERROR
public static final EKeyStoreLoadErrorText KEY_LOAD_ERROR
-
-
Method Detail
-
values
public static EKeyStoreLoadErrorText[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EKeyStoreLoadErrorText c : EKeyStoreLoadErrorText.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EKeyStoreLoadErrorText valueOf(String name)
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.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-