public enum ModificationType extends Enum<ModificationType>
Enum Constant and Description |
---|
CHECKIN
A Node has been checked in.
|
CHECKOUT
A Node has been checked out.
|
COPY
An Item has been copied to a new location.
|
CREATE
A Node has been created.
|
DELETE
An Item has been deleted.
|
MODIFY
Content has been created or updated.
|
MOVE
An Item has been moved to a new location.
|
ORDER
A child Node has been reordered.
|
RESTORE
A Node has been restored to a given version.
|
Modifier and Type | Method and Description |
---|---|
static ModificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationType MODIFY
public static final ModificationType DELETE
public static final ModificationType MOVE
public static final ModificationType COPY
public static final ModificationType CREATE
public static final ModificationType ORDER
public static final ModificationType CHECKOUT
public static final ModificationType CHECKIN
public static final ModificationType RESTORE
public static ModificationType[] values()
for (ModificationType c : ModificationType.values()) System.out.println(c);
public static ModificationType 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 nullCopyright © 2017 The Apache Software Foundation. All rights reserved.