public static enum CompensationTrigger.ConflictType extends java.lang.Enum<CompensationTrigger.ConflictType>
Enum Constant and Description |
---|
ADDED_INSTANCE
The instance exists on the remote node but does not exist on the
active node.
|
KEY_CONFLICT
A different instance exists on the remote node with the same key
indexes.
|
STATE_CONFLICT
The same instance exists on the remote node, and updates have
been applied to either the active node or the remote node,
resulting in a conflict.
|
Modifier and Type | Method and Description |
---|---|
static CompensationTrigger.ConflictType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompensationTrigger.ConflictType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompensationTrigger.ConflictType STATE_CONFLICT
public static final CompensationTrigger.ConflictType KEY_CONFLICT
public static final CompensationTrigger.ConflictType ADDED_INSTANCE
public static CompensationTrigger.ConflictType[] values()
for (CompensationTrigger.ConflictType c : CompensationTrigger.ConflictType.values()) System.out.println(c);
public static CompensationTrigger.ConflictType 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