Enum Class LockRecordResult
- All Implemented Interfaces:
Serializable
,Comparable<LockRecordResult>
,Constable
Possible result for a record lock action, specifically
RecordLockManager.lockRecord(String, String, Integer)
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe record could not be locked because the lock limit has already been exceededNo action was carried out, either because no locking is required, or because the record is already locked by this sessionsThe action was carried out and the record is locked -
Method Summary
Modifier and TypeMethodDescriptionstatic LockRecordResult
Returns the enum constant of this class with the specified name.static LockRecordResult[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
RECORD_LOCKED
The action was carried out and the record is locked -
NO_ACTION
No action was carried out, either because no locking is required, or because the record is already locked by this sessions -
LIMIT_EXCEEDED
The record could not be locked because the lock limit has already been exceeded
-
-
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
-