public static enum DocumentTreeUpdateResult.Status extends Enum<DocumentTreeUpdateResult.Status>
| Enum Constant and Description |
|---|
ILLEGAL_MODIFICATION
Indicates a failed update due to a illegal modification attempt.
|
INVALID_PATH
Indicates a failed update due to a invalid path.
|
NOOP
Indicates a noop i.e.
|
OK
Indicates a successful update.
|
WRITE_LOCK
Indicates a failed update due to a write lock.
|
| Modifier and Type | Method and Description |
|---|---|
static DocumentTreeUpdateResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentTreeUpdateResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentTreeUpdateResult.Status OK
public static final DocumentTreeUpdateResult.Status NOOP
public static final DocumentTreeUpdateResult.Status WRITE_LOCK
public static final DocumentTreeUpdateResult.Status INVALID_PATH
public static final DocumentTreeUpdateResult.Status ILLEGAL_MODIFICATION
public static DocumentTreeUpdateResult.Status[] values()
for (DocumentTreeUpdateResult.Status c : DocumentTreeUpdateResult.Status.values()) System.out.println(c);
public static DocumentTreeUpdateResult.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null