public static enum OraclePropertyGraphBase.OptimizationFlag extends java.lang.Enum<OraclePropertyGraphBase.OptimizationFlag>
Enum Constant and Description |
---|
DO_NOT_CREATE_OBJECT
Indicate the use of a predefined constant object when processing vertices or edges
|
JUST_EDGE_ID
Indicate the construction of edge objects with ID only when processing edges
|
JUST_LABEL_EDGE_ID
Indicate the construction of edge objects with ID and label only when processing edges
|
JUST_LABEL_VERTEX_EDGE_ID
Indicate the construction of edge objects with ID, label, and in/out vertex IDs only when processing edges
|
JUST_VERTEX_EDGE_ID
Indicate the construction of edge objects with just ID and in/out vertex IDs when processing edges
|
JUST_VERTEX_ID
Indicate the construction of vertex objects with ID only when processing vertices
|
Modifier and Type | Method and Description |
---|---|
static OraclePropertyGraphBase.OptimizationFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OraclePropertyGraphBase.OptimizationFlag[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OraclePropertyGraphBase.OptimizationFlag DO_NOT_CREATE_OBJECT
public static final OraclePropertyGraphBase.OptimizationFlag JUST_EDGE_ID
public static final OraclePropertyGraphBase.OptimizationFlag JUST_LABEL_EDGE_ID
public static final OraclePropertyGraphBase.OptimizationFlag JUST_LABEL_VERTEX_EDGE_ID
public static final OraclePropertyGraphBase.OptimizationFlag JUST_VERTEX_EDGE_ID
public static final OraclePropertyGraphBase.OptimizationFlag JUST_VERTEX_ID
public static OraclePropertyGraphBase.OptimizationFlag 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 OraclePropertyGraphBase.OptimizationFlag[] values()
for (OraclePropertyGraphBase.OptimizationFlag c : OraclePropertyGraphBase.OptimizationFlag.values()) System.out.println(c);
Copyright © 2017, 2018 Oracle and/or its affiliates. All Rights Reserved.