Interface VertexProgram.Builder
- 
- All Known Implementing Classes:
 org.apache.tinkerpop.gremlin.process.computer.util.AbstractVertexProgramBuilder,ConnectedComponentVertexProgram.Builder,PageRankVertexProgram.Builder,PeerPressureVertexProgram.Builder,ShortestPathVertexProgram.Builder,TraversalVertexProgram.Builder
- Enclosing interface:
 - VertexProgram<M>
 
public static interface VertexProgram.Builder 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VertexProgram.Builderconfigure(Object... keyValues)This method should only be used by the underlying compute engine.default <P extends VertexProgram>
Pcreate()<P extends VertexProgram>
Pcreate(Graph graph) 
 - 
 
- 
- 
Method Detail
- 
configure
VertexProgram.Builder configure(Object... keyValues)
This method should only be used by the underlying compute engine. For VertexProgram configurations, please use specific fluent methods off the builder. 
- 
create
<P extends VertexProgram> P create(Graph graph)
 
- 
create
default <P extends VertexProgram> P create()
 
 - 
 
 -