Interface Parameterizing
- 
- All Known Subinterfaces:
- Configuring,- Deleting<E>,- Mutating<E>,- ReadWriting,- Writing<E>
 - All Known Implementing Classes:
- AddEdgeStartStep,- AddEdgeStep,- AddPropertyStep,- AddVertexStartStep,- AddVertexStep,- CallStep,- ConnectedComponentVertexProgramStep,- DropStep,- EdgeOtherVertexStep,- EdgeVertexStep,- GraphStep,- HasStep,- IndexStep,- IoStep,- MergeEdgeStep,- MergeStep,- MergeVertexStep,- PageRankVertexProgramStep,- PeerPressureVertexProgramStep,- PropertiesStep,- PropertyMapStep,- ShortestPathVertexProgramStep,- TinkerGraphStep,- TraversalFilterStep,- VertexStep
 
 public interface ParameterizingAn interface forStepimplementations that hold aParametersobject, which fold in arguments from other steps. It is typically used on mutating steps, such asaddV(), where calls toproperty(k,v)are folded in as parameters to that add vertex step, but it may be used for any step that could benefit from modulation.- Author:
- Marko A. Rodriguez (http://markorodriguez.com), Stephen Mallette (http://stephen.genoprime.com)
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ParametersgetParameters()Gets the parameters on the step.
 
- 
- 
- 
Method Detail- 
getParametersParameters getParameters() Gets the parameters on the step.
 
- 
 
-