public static enum Delta.TYPE extends Enum<Delta.TYPE>
| 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.TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Delta.TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Delta.TYPE CHANGE
public static final Delta.TYPE DELETE
public static final Delta.TYPE INSERT
public static Delta.TYPE[] values()
for (Delta.TYPE c : Delta.TYPE.values()) System.out.println(c);
public static Delta.TYPE 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 © 2015. All rights reserved.