Enum Class LockDetails.LockType

java.lang.Object
java.lang.Enum<LockDetails.LockType>
org.alfresco.repo.domain.locks.LockDetails.LockType
All Implemented Interfaces:
Serializable, Comparable<LockDetails.LockType>, Constable
Enclosing class:
LockDetails

public static enum LockDetails.LockType extends Enum<LockDetails.LockType>
The type of lock
Since:
3.2
Author:
Derek Hulley
  • Enum Constant Details

    • EXCLUSIVE

      public static final LockDetails.LockType EXCLUSIVE
      A lock held by a specific transaction. No other (exclusive or shared) locks may be held for the same qualified name.
    • SHARED

      public static final LockDetails.LockType SHARED
      A lock that may be held by several transactions when no exclusive lock is held for the same qualified name.
  • Method Details

    • values

      public static LockDetails.LockType[] 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

      public static LockDetails.LockType valueOf(String name)
      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 name
      NullPointerException - if the argument is null