public static enum CmsLockInfo.State extends java.lang.Enum<CmsLockInfo.State>
Enum Constant and Description |
---|
changed
The resource has changed in the meantime.
|
locked
The resource was already locked by another user.
|
other
Some other error occurred.
|
success
The resource was successfully locked.
|
Modifier and Type | Method and Description |
---|---|
static CmsLockInfo.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsLockInfo.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsLockInfo.State locked
public static final CmsLockInfo.State changed
public static final CmsLockInfo.State success
public static final CmsLockInfo.State other
public static CmsLockInfo.State[] values()
for (CmsLockInfo.State c : CmsLockInfo.State.values()) System.out.println(c);
public static CmsLockInfo.State 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