public enum OnAddExistingElement extends java.lang.Enum<OnAddExistingElement>
| Enum Constant and Description |
|---|
ERROR
throw an exception
|
IGNORE
ignore the call (default)
|
WARN
warn when a vertex/edge already exists
|
| Modifier and Type | Method and Description |
|---|---|
static OnAddExistingElement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnAddExistingElement[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OnAddExistingElement ERROR
public static final OnAddExistingElement IGNORE
public static final OnAddExistingElement WARN
public static OnAddExistingElement 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 nullpublic static OnAddExistingElement[] values()
for (OnAddExistingElement c : OnAddExistingElement.values())
System.out.println(c);
Copyright © 2016, 2018 Oracle and/or its affiliates. All Rights Reserved.