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