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