Class ShortestPathVertexProgram.Builder
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.computer.util.AbstractVertexProgramBuilder<ShortestPathVertexProgram.Builder>
- 
- org.apache.tinkerpop.gremlin.process.computer.search.path.ShortestPathVertexProgram.Builder
 
 
- 
- All Implemented Interfaces:
- VertexProgram.Builder
 - Enclosing class:
- ShortestPathVertexProgram
 
 public static final class ShortestPathVertexProgram.Builder extends AbstractVertexProgramBuilder<ShortestPathVertexProgram.Builder> 
- 
- 
Field Summary- 
Fields inherited from class org.apache.tinkerpop.gremlin.process.computer.util.AbstractVertexProgramBuilderconfiguration
 
- 
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description ShortestPathVertexProgram.BuilderdistanceProperty(String distance)ShortestPathVertexProgram.BuilderdistanceTraversal(Traversal<Edge,Number> distanceTraversal)ShortestPathVertexProgram.BuilderedgeDirection(Direction direction)ShortestPathVertexProgram.BuilderedgeTraversal(Traversal<Vertex,Edge> edgeTraversal)ShortestPathVertexProgram.BuilderincludeEdges(boolean include)ShortestPathVertexProgram.BuildermaxDistance(Number distance)ShortestPathVertexProgram.Buildersource(Traversal<Vertex,?> sourceVertexFilter)ShortestPathVertexProgram.Buildertarget(Traversal<Vertex,?> targetVertexFilter)- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.computer.util.AbstractVertexProgramBuilderconfigure, create
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.computer.VertexProgram.Buildercreate
 
- 
 
- 
- 
- 
Method Detail- 
sourcepublic ShortestPathVertexProgram.Builder source(Traversal<Vertex,?> sourceVertexFilter) 
 - 
targetpublic ShortestPathVertexProgram.Builder target(Traversal<Vertex,?> targetVertexFilter) 
 - 
edgeDirectionpublic ShortestPathVertexProgram.Builder edgeDirection(Direction direction) 
 - 
edgeTraversalpublic ShortestPathVertexProgram.Builder edgeTraversal(Traversal<Vertex,Edge> edgeTraversal) 
 - 
distancePropertypublic ShortestPathVertexProgram.Builder distanceProperty(String distance) 
 - 
distanceTraversalpublic ShortestPathVertexProgram.Builder distanceTraversal(Traversal<Edge,Number> distanceTraversal) 
 - 
maxDistancepublic ShortestPathVertexProgram.Builder maxDistance(Number distance) 
 - 
includeEdgespublic ShortestPathVertexProgram.Builder includeEdges(boolean include) 
 
- 
 
-