Package org.alfresco.encryption
Enum EncryptionKeysRegistry.KEY_STATUS
- java.lang.Object
-
- java.lang.Enum<EncryptionKeysRegistry.KEY_STATUS>
-
- org.alfresco.encryption.EncryptionKeysRegistry.KEY_STATUS
-
- All Implemented Interfaces:
Serializable
,Comparable<EncryptionKeysRegistry.KEY_STATUS>
- Enclosing interface:
- EncryptionKeysRegistry
public static enum EncryptionKeysRegistry.KEY_STATUS extends Enum<EncryptionKeysRegistry.KEY_STATUS>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncryptionKeysRegistry.KEY_STATUS
valueOf(String name)
Returns the enum constant of this type with the specified name.static EncryptionKeysRegistry.KEY_STATUS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OK
public static final EncryptionKeysRegistry.KEY_STATUS OK
-
CHANGED
public static final EncryptionKeysRegistry.KEY_STATUS CHANGED
-
MISSING
public static final EncryptionKeysRegistry.KEY_STATUS MISSING
-
-
Method Detail
-
values
public static EncryptionKeysRegistry.KEY_STATUS[] 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 (EncryptionKeysRegistry.KEY_STATUS c : EncryptionKeysRegistry.KEY_STATUS.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncryptionKeysRegistry.KEY_STATUS 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
-
-