public static enum NodeDelta.ConflictType extends Enum<NodeDelta.ConflictType>
| Enum Constant and Description |
|---|
NODE_CONTENT_CONFLICT
child nodes with identical name have been added or modified, but
with differing id's; the corresponding node subtrees are hence differing
and potentially conflicting.
|
PROPERTY_VALUE_CONFLICT
same property has been added or set, but with differing values
|
REMOVED_DIRTY_NODE_CONFLICT
a child node entry pointing to a modified subtree has been deleted
|
REMOVED_DIRTY_PROPERTY_CONFLICT
a modified property has been deleted
|
| Modifier and Type | Method and Description |
|---|---|
static NodeDelta.ConflictType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeDelta.ConflictType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeDelta.ConflictType PROPERTY_VALUE_CONFLICT
public static final NodeDelta.ConflictType NODE_CONTENT_CONFLICT
public static final NodeDelta.ConflictType REMOVED_DIRTY_PROPERTY_CONFLICT
public static final NodeDelta.ConflictType REMOVED_DIRTY_NODE_CONFLICT
public static NodeDelta.ConflictType[] values()
for (NodeDelta.ConflictType c : NodeDelta.ConflictType.values()) System.out.println(c);
public static NodeDelta.ConflictType 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 © 2012-2014 The Apache Software Foundation. All Rights Reserved.