public enum DeltaType extends java.lang.Enum<DeltaType>
Enum Constant and Description |
---|
CHANGE
A change in the original.
|
DELETE
A delete from the original.
|
EQUAL
An do nothing.
|
INSERT
An insert into the original.
|
Modifier and Type | Method and Description |
---|---|
static DeltaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeltaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeltaType CHANGE
public static final DeltaType DELETE
public static final DeltaType INSERT
public static final DeltaType EQUAL
public static DeltaType[] values()
for (DeltaType c : DeltaType.values()) System.out.println(c);
public static DeltaType 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 null