public static enum ImportOptions.OnDuplicate extends Enum<ImportOptions.OnDuplicate>
Modifier and Type | Method and Description |
---|---|
static ImportOptions.OnDuplicate |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportOptions.OnDuplicate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportOptions.OnDuplicate ERROR
public static final ImportOptions.OnDuplicate UPDATE
public static final ImportOptions.OnDuplicate REPLACE
public static final ImportOptions.OnDuplicate IGNORE
public static ImportOptions.OnDuplicate[] values()
for (ImportOptions.OnDuplicate c : ImportOptions.OnDuplicate.values()) System.out.println(c);
public static ImportOptions.OnDuplicate 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 © 2012–2016 ArangoDB GmbH. All rights reserved.