org.apache.subversion.javahl
Enum ClientNotifyInformation.LockStatus

java.lang.Object
  extended by java.lang.Enum<ClientNotifyInformation.LockStatus>
      extended by org.apache.subversion.javahl.ClientNotifyInformation.LockStatus
All Implemented Interfaces:
Serializable, Comparable<ClientNotifyInformation.LockStatus>
Enclosing class:
ClientNotifyInformation

public static enum ClientNotifyInformation.LockStatus
extends Enum<ClientNotifyInformation.LockStatus>


Enum Constant Summary
inapplicable
          does not make sense for this operation
locked
          the item was locked
unchanged
          the lock change did not change
unknown
          unknown lock state
unlocked
          the item was unlocked
 
Method Summary
 String toString()
           
static ClientNotifyInformation.LockStatus valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ClientNotifyInformation.LockStatus[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

inapplicable

public static final ClientNotifyInformation.LockStatus inapplicable
does not make sense for this operation


unknown

public static final ClientNotifyInformation.LockStatus unknown
unknown lock state


unchanged

public static final ClientNotifyInformation.LockStatus unchanged
the lock change did not change


locked

public static final ClientNotifyInformation.LockStatus locked
the item was locked


unlocked

public static final ClientNotifyInformation.LockStatus unlocked
the item was unlocked

Method Detail

values

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

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

valueOf

public static ClientNotifyInformation.LockStatus 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

toString

public String toString()
Overrides:
toString in class Enum<ClientNotifyInformation.LockStatus>