public static enum Unique.ConflictType extends java.lang.Enum<Unique.ConflictType>
| Enum Constant and Description |
|---|
ABORT |
FAIL |
IGNORE |
REPLACE |
ROLLBACK |
| Modifier and Type | Method and Description |
|---|---|
static Unique.ConflictType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Unique.ConflictType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Unique.ConflictType ROLLBACK
public static final Unique.ConflictType ABORT
public static final Unique.ConflictType FAIL
public static final Unique.ConflictType IGNORE
public static final Unique.ConflictType REPLACE
public static Unique.ConflictType[] values()
for (Unique.ConflictType c : Unique.ConflictType.values()) System.out.println(c);
public static Unique.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