public static enum DiffNode.State extends java.lang.Enum<DiffNode.State>
DiffNode
representing the difference between two objects.Enum Constant and Description |
---|
ADDED |
CHANGED |
CIRCULAR |
IGNORED |
INACCESSIBLE |
REMOVED |
UNTOUCHED |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getReason() |
static DiffNode.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DiffNode.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DiffNode.State ADDED
public static final DiffNode.State CHANGED
public static final DiffNode.State REMOVED
public static final DiffNode.State UNTOUCHED
public static final DiffNode.State CIRCULAR
public static final DiffNode.State IGNORED
public static final DiffNode.State INACCESSIBLE
public static DiffNode.State[] values()
for (DiffNode.State c : DiffNode.State.values()) System.out.println(c);
public static DiffNode.State 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 nullpublic java.lang.String getReason()