public static enum OraclePropertyGraphBase.OptimizationFlag extends Enum<OraclePropertyGraphBase.OptimizationFlag>
| Enum Constant and Description | 
|---|
| DO_NOT_CREATE_OBJECTIndicate the use of a predefined constant object when processing vertices or edges | 
| JUST_EDGE_IDIndicate the construction of edge objects with ID only when processing edges | 
| JUST_LABEL_EDGE_IDIndicate the construction of edge objects with ID and label only when processing edges | 
| JUST_LABEL_VERTEX_EDGE_IDIndicate the construction of edge objects with ID, label, and in/out vertex IDs only when processing edges | 
| JUST_VERTEX_EDGE_IDIndicate the construction of edge objects with just ID and in/out vertex IDs when processing edges | 
| JUST_VERTEX_IDIndicate the construction of vertex objects with ID only when processing vertices | 
| Modifier and Type | Method and Description | 
|---|---|
| static OraclePropertyGraphBase.OptimizationFlag | valueOf(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(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 static OraclePropertyGraphBase.OptimizationFlag[] values()
for (OraclePropertyGraphBase.OptimizationFlag c : OraclePropertyGraphBase.OptimizationFlag.values())
    System.out.println(c);
Copyright © 2016 Oracle and/or its affiliates. All Rights Reserved.