public static enum ClientNotifyInformation.LockStatus extends java.lang.Enum<ClientNotifyInformation.LockStatus>
| Enum Constant and Description |
|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static ClientNotifyInformation.LockStatus |
valueOf(java.lang.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.
|
public static final ClientNotifyInformation.LockStatus inapplicable
public static final ClientNotifyInformation.LockStatus unknown
public static final ClientNotifyInformation.LockStatus unchanged
public static final ClientNotifyInformation.LockStatus locked
public static final ClientNotifyInformation.LockStatus unlocked
public static ClientNotifyInformation.LockStatus[] values()
for (ClientNotifyInformation.LockStatus c : ClientNotifyInformation.LockStatus.values()) System.out.println(c);
public static ClientNotifyInformation.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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<ClientNotifyInformation.LockStatus>