Package org.eclipse.emf.cdo.common.lock
Enum CDOLockChangeInfo.Operation
- java.lang.Object
- 
- java.lang.Enum<CDOLockChangeInfo.Operation>
- 
- org.eclipse.emf.cdo.common.lock.CDOLockChangeInfo.Operation
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<CDOLockChangeInfo.Operation>
 - Enclosing interface:
- CDOLockChangeInfo
 
 public static enum CDOLockChangeInfo.Operation extends java.lang.Enum<CDOLockChangeInfo.Operation> Enumerates the possible locking operations.- Author:
- Caspar De Groot
 
- 
- 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static CDOLockChangeInfo.OperationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CDOLockChangeInfo.Operation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
LOCKpublic static final CDOLockChangeInfo.Operation LOCK 
 - 
UNLOCKpublic static final CDOLockChangeInfo.Operation UNLOCK 
 
- 
 - 
Method Detail- 
valuespublic static CDOLockChangeInfo.Operation[] 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 (CDOLockChangeInfo.Operation c : CDOLockChangeInfo.Operation.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static CDOLockChangeInfo.Operation valueOf(java.lang.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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-