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 Parameterizing
An interface forStep
implementations that hold aParameters
object, 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 Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Parameters
getParameters()
Gets the parameters on the step.
-
-
-
Method Detail
-
getParameters
Parameters getParameters()
Gets the parameters on the step.
-
-