public static enum ProcessConstants.DeltaScope extends java.lang.Enum<ProcessConstants.DeltaScope>
DeltaLayer| Enum Constant and Description |
|---|
CHANGED
Entities that are changed by the delta layer.
|
DELETED
Entities that are deleted by the delta layer.
|
MOVED
Entities (nodes) that are moved by the delta layer.
|
NEW
Entities that are added by the delta layer.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.DeltaScope |
valueOf(int code) |
static ProcessConstants.DeltaScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.DeltaScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.DeltaScope NEW
public static final ProcessConstants.DeltaScope DELETED
public static final ProcessConstants.DeltaScope CHANGED
public static final ProcessConstants.DeltaScope MOVED
public static ProcessConstants.DeltaScope[] values()
for (ProcessConstants.DeltaScope c : ProcessConstants.DeltaScope.values()) System.out.println(c);
public static ProcessConstants.DeltaScope 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 int getCode()
public static ProcessConstants.DeltaScope valueOf(int code)