public enum ConflictType extends java.lang.Enum<ConflictType>
Enum Constant and Description |
---|
ADDITIVE
Additive Conflicts occur when two additive transactions interact with one another.
|
CHILD |
NONE |
SIBLING |
Modifier and Type | Method and Description |
---|---|
static ConflictType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConflictType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConflictType NONE
public static final ConflictType SIBLING
public static final ConflictType CHILD
public static final ConflictType ADDITIVE
public static ConflictType[] values()
for (ConflictType c : ConflictType.values()) System.out.println(c);
public static 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