Package oracle.pgx.config
Enum OnAddExistingElement
- java.lang.Object
-
- java.lang.Enum<OnAddExistingElement>
-
- oracle.pgx.config.OnAddExistingElement
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OnAddExistingElement>
public enum OnAddExistingElement extends java.lang.Enum<OnAddExistingElement>
strategies to handle adding vertices/edges that already exist
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
ERROR
public static final OnAddExistingElement ERROR
throw an exception
-
WARN
public static final OnAddExistingElement WARN
warn when a vertex/edge already exists
-
WARN_ONCE
public static final OnAddExistingElement WARN_ONCE
warn only once when a vertex/edge already exists
-
IGNORE
public static final OnAddExistingElement IGNORE
ignore the call (default)
-
-
Method Detail
-
values
public static OnAddExistingElement[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OnAddExistingElement c : OnAddExistingElement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OnAddExistingElement valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-