public static enum DiffFactory.EDiff extends Enum<DiffFactory.EDiff>
Enum Constant and Description |
---|
DELETED
Node has been deleted.
|
INSERTED
Node has been inserted.
|
SAME
Nodes are the same.
|
SAMEHASH
Nodes are the same (including subtrees), internally used for
optimizations.
|
UPDATED
Node has been updated.
|
Modifier and Type | Method and Description |
---|---|
static DiffFactory.EDiff |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DiffFactory.EDiff[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiffFactory.EDiff SAME
public static final DiffFactory.EDiff SAMEHASH
public static final DiffFactory.EDiff INSERTED
public static final DiffFactory.EDiff DELETED
public static final DiffFactory.EDiff UPDATED
public static DiffFactory.EDiff[] values()
for (DiffFactory.EDiff c : DiffFactory.EDiff.values()) System.out.println(c);
public static DiffFactory.EDiff 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 © 2013. All Rights Reserved.