public static enum Modification.ModificationType extends java.lang.Enum<Modification.ModificationType>
DiffGroup
s.Enum Constant and Description |
---|
add
There are only new affected elements in the second document.
|
attributeDifference
There are affected elements in both documents and their number is equal as they are
themselves basically equal.
|
remove
There are only removed affected elements in the first document.
|
replace
There are affected elements in both documents but their number may differ.
|
validationError
A validation error is an indicator for a problem on a singular element.
|
Modifier and Type | Method and Description |
---|---|
static Modification.ModificationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Modification.ModificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Modification.ModificationType add
public static final Modification.ModificationType remove
public static final Modification.ModificationType replace
public static final Modification.ModificationType attributeDifference
public static final Modification.ModificationType validationError
public static Modification.ModificationType[] values()
for (Modification.ModificationType c : Modification.ModificationType.values()) System.out.println(c);
public static Modification.ModificationType 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 nullCopyright © 2010-2022 by i-net software GmbH