Package org.alfresco.repo.domain.locks
Enum Class LockDetails.LockType
- All Implemented Interfaces:
Serializable,Comparable<LockDetails.LockType>,Constable
- Enclosing class:
- LockDetails
The type of lock
- Since:
- 3.2
- Author:
- Derek Hulley
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic LockDetails.LockTypeReturns the enum constant of this class with the specified name.static LockDetails.LockType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXCLUSIVE
A lock held by a specific transaction. No other (exclusive or shared) locks may be held for the same qualified name. -
SHARED
A lock that may be held by several transactions when no exclusive lock is held for the same qualified name.
-
-
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
-