public static enum LoadGraphWith.GraphData extends Enum<LoadGraphWith.GraphData>
| Enum Constant and Description | 
|---|
CLASSIC
Loads the "classic" TinkerPop toy graph. 
 | 
CREW
Load "The Crew" TinkerPop3 toy graph which includes  
VertexProperty data. | 
GRATEFUL
Loads the "grateful dead" graph which is a "large" graph which provides for the construction of more
 complex traversals. 
 | 
MODERN
Loads the "modern" TinkerPop toy graph which is like "classic", but with the "weight" value on edges stored
 as double and labels added for vertices. 
 | 
SINK
Loads a test graph which contains disconnected subgraphs specialized for testing purposes (e.g. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
List<FeatureRequirement> | 
featuresRequired()  | 
String | 
location()  | 
static LoadGraphWith.GraphData | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LoadGraphWith.GraphData[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LoadGraphWith.GraphData CLASSIC
public static final LoadGraphWith.GraphData MODERN
public static final LoadGraphWith.GraphData CREW
VertexProperty data.public static final LoadGraphWith.GraphData GRATEFUL
public static final LoadGraphWith.GraphData SINK
public static LoadGraphWith.GraphData[] values()
for (LoadGraphWith.GraphData c : LoadGraphWith.GraphData.values()) System.out.println(c);
public static LoadGraphWith.GraphData 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 location()
public List<FeatureRequirement> featuresRequired()
Copyright © 2013–2018 Apache Software Foundation. All rights reserved.