org.opencms.gwt.shared
Enum CmsLockInfo.State

java.lang.Object
  extended by java.lang.Enum<CmsLockInfo.State>
      extended by org.opencms.gwt.shared.CmsLockInfo.State
All Implemented Interfaces:
Serializable, Comparable<CmsLockInfo.State>
Enclosing class:
CmsLockInfo

public static enum CmsLockInfo.State
extends Enum<CmsLockInfo.State>

An enum indicating the success or type of failure of a locking operation.


Enum Constant Summary
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.
 
Method Summary
static CmsLockInfo.State valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

locked

public static final CmsLockInfo.State locked
The resource was already locked by another user.


changed

public static final CmsLockInfo.State changed
The resource has changed in the meantime.


success

public static final CmsLockInfo.State success
The resource was successfully locked.


other

public static final CmsLockInfo.State other
Some other error occurred.

Method Detail

values

public static CmsLockInfo.State[] 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 (CmsLockInfo.State c : CmsLockInfo.State.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CmsLockInfo.State valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null