public enum OverwriteMode extends Enum<OverwriteMode>
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
static OverwriteMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverwriteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverwriteMode ignore
public static final OverwriteMode replace
public static final OverwriteMode update
public static final OverwriteMode conflict
public static OverwriteMode[] values()
for (OverwriteMode c : OverwriteMode.values()) System.out.println(c);
public static OverwriteMode 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 nullpublic String getValue()
Copyright © 2016–2020 ArangoDB GmbH. All rights reserved.