Enum DenormalisedLockService.LockName
- java.lang.Object
-
- java.lang.Enum<DenormalisedLockService.LockName>
-
- com.atlassian.confluence.security.denormalisedpermissions.impl.manage.DenormalisedLockService.LockName
-
- All Implemented Interfaces:
Serializable
,Comparable<DenormalisedLockService.LockName>
- Enclosing class:
- DenormalisedLockService
public static enum DenormalisedLockService.LockName extends Enum<DenormalisedLockService.LockName>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONTENT_LOG_PROCESSOR
CONTENT_STATUS
SPACE_LOG_PROCESSOR
SPACE_STATUS
UPDATE_SIDS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DenormalisedLockService.LockName
valueOf(String name)
Returns the enum constant of this type with the specified name.static DenormalisedLockService.LockName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPACE_STATUS
public static final DenormalisedLockService.LockName SPACE_STATUS
-
SPACE_LOG_PROCESSOR
public static final DenormalisedLockService.LockName SPACE_LOG_PROCESSOR
-
CONTENT_STATUS
public static final DenormalisedLockService.LockName CONTENT_STATUS
-
CONTENT_LOG_PROCESSOR
public static final DenormalisedLockService.LockName CONTENT_LOG_PROCESSOR
-
UPDATE_SIDS
public static final DenormalisedLockService.LockName UPDATE_SIDS
-
-
Method Detail
-
values
public static DenormalisedLockService.LockName[] 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 (DenormalisedLockService.LockName c : DenormalisedLockService.LockName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DenormalisedLockService.LockName 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
-
-