public static enum Table.ConflictHandling extends Enum<Table.ConflictHandling>
| Enum Constant and Description | 
|---|
CreateList  | 
CreateSet  | 
KeepBoth  | 
KeepFirst  | 
ReplaceNULLs  | 
ReturnConflicts  | 
| Modifier and Type | Method and Description | 
|---|---|
static Table.ConflictHandling | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Table.ConflictHandling[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Table.ConflictHandling KeepFirst
public static final Table.ConflictHandling KeepBoth
public static final Table.ConflictHandling ReplaceNULLs
public static final Table.ConflictHandling CreateList
public static final Table.ConflictHandling CreateSet
public static final Table.ConflictHandling ReturnConflicts
public static Table.ConflictHandling[] values()
for (Table.ConflictHandling c : Table.ConflictHandling.values()) System.out.println(c);
public static Table.ConflictHandling 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 © 2018. All rights reserved.