public static enum LockStatusChangeEvent.LockStatus extends java.lang.Enum<LockStatusChangeEvent.LockStatus>
Enum Constant and Description |
---|
LOCKED_BY_ME
Status to indicate that a EObject is locked by the current editing context.
|
LOCKED_BY_OTHER
Status to indicate that a EObject is locked by another editing context.
|
LOCKED_PERMISSION
Status to indicate that a EObject is locked because of a permission issue.
|
UNLOCKED
Status to indicate that a EObject is not locked.
|
Modifier and Type | Method and Description |
---|---|
static LockStatusChangeEvent.LockStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LockStatusChangeEvent.LockStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockStatusChangeEvent.LockStatus LOCKED_BY_ME
public static final LockStatusChangeEvent.LockStatus LOCKED_BY_OTHER
public static final LockStatusChangeEvent.LockStatus LOCKED_PERMISSION
public static final LockStatusChangeEvent.LockStatus UNLOCKED
public static LockStatusChangeEvent.LockStatus[] values()
for (LockStatusChangeEvent.LockStatus c : LockStatusChangeEvent.LockStatus.values()) System.out.println(c);
public static LockStatusChangeEvent.LockStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null