Class AddVertexStartStep
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<Vertex,Vertex>
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.map.AddVertexStartStep
 
 
- 
- All Implemented Interfaces:
- Serializable,- AutoCloseable,- Cloneable,- Iterator<Traverser.Admin<Vertex>>,- Step<Vertex,Vertex>,- Configuring,- Mutating<Event.VertexAddedEvent>,- Parameterizing,- Scoping,- TraversalParent,- Writing<Event.VertexAddedEvent>
 
 public class AddVertexStartStep extends AbstractStep<Vertex,Vertex> implements Writing<Event.VertexAddedEvent>, TraversalParent, Scoping - Author:
- Marko A. Rodriguez (http://markorodriguez.com), Stephen Mallette (http://stephen.genoprime.com)
- See Also:
- Serialized Form
 
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.ScopingScoping.KeyNotFoundException, Scoping.Variable
 
- 
 - 
Field Summary- 
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepid, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
 
- 
 - 
Constructor SummaryConstructors Constructor Description AddVertexStartStep(Traversal.Admin traversal, String label)AddVertexStartStep(Traversal.Admin traversal, Traversal<?,String> vertexLabelTraversal)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description AddVertexStartStepclone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.voidconfigure(Object... keyValues)Accept a configuration to theStep.<S,E>
 List<Traversal.Admin<S,E>>getLocalChildren()CallbackRegistry<Event.VertexAddedEvent>getMutatingCallbackRegistry()Gets the callback registry for events that the step raises.ParametersgetParameters()Gets the parameters on the step.Set<TraverserRequirement>getRequirements()Provide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly.Set<String>getScopeKeys()Get the labels that this scoping step will access during the traversalinthashCode()protected Traverser.Admin<Vertex>processNextStart()voidreset()Reset the state of the step such that it has no incoming starts.voidsetTraversal(Traversal.Admin<?,?> parentTraversal)Set theTraversalthat this step is contained within.StringtoString()- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepaddLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface java.util.IteratorforEachRemaining, remove
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.ScopinggetNullableScopeValue, getSafeScopeValue, getScopeValue
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParentaddGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild, replaceLocalChild
 
- 
 
- 
- 
- 
Constructor Detail- 
AddVertexStartSteppublic AddVertexStartStep(Traversal.Admin traversal, String label) 
 - 
AddVertexStartSteppublic AddVertexStartStep(Traversal.Admin traversal, Traversal<?,String> vertexLabelTraversal) 
 
- 
 - 
Method Detail- 
getParameterspublic Parameters getParameters() Description copied from interface:ParameterizingGets the parameters on the step.- Specified by:
- getParametersin interface- Parameterizing
 
 - 
getScopeKeyspublic Set<String> getScopeKeys() Description copied from interface:ScopingGet the labels that this scoping step will access during the traversal- Specified by:
- getScopeKeysin interface- Scoping
- Returns:
- the accessed labels of the scoping step
 
 - 
getLocalChildrenpublic <S,E> List<Traversal.Admin<S,E>> getLocalChildren() - Specified by:
- getLocalChildrenin interface- TraversalParent
 
 - 
configurepublic void configure(Object... keyValues) Description copied from interface:ConfiguringAccept a configuration to theStep. Note that this interface extendsParameterizingand so there is an expectation that theStepimplementation will have aParametersinstance that will house any values passed to this method. Storing these configurations inParametersis not a requirement however, IF the configuration is an expected option for the step and can be stored on a member field that can be accessed on the step by more direct means (i.e. like a getter method).- Specified by:
- configurein interface- Configuring
 
 - 
processNextStartprotected Traverser.Admin<Vertex> processNextStart() - Specified by:
- processNextStartin class- AbstractStep<Vertex,Vertex>
 
 - 
getMutatingCallbackRegistrypublic CallbackRegistry<Event.VertexAddedEvent> getMutatingCallbackRegistry() Description copied from interface:MutatingGets the callback registry for events that the step raises.- Specified by:
- getMutatingCallbackRegistryin interface- Mutating<Event.VertexAddedEvent>
 
 - 
getRequirementspublic Set<TraverserRequirement> getRequirements() Description copied from interface:StepProvide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly. The provided default implements returns an empty set.- Specified by:
- getRequirementsin interface- Step<Vertex,Vertex>
- Returns:
- the set of requirements
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- AbstractStep<Vertex,Vertex>
 
 - 
resetpublic void reset() Description copied from interface:StepReset the state of the step such that it has no incoming starts. Internal states are to be reset, but any sideEffect data structures are not to be recreated.
 - 
toStringpublic String toString() - Overrides:
- toStringin class- AbstractStep<Vertex,Vertex>
 
 - 
setTraversalpublic void setTraversal(Traversal.Admin<?,?> parentTraversal) Description copied from interface:StepSet theTraversalthat this step is contained within.- Specified by:
- setTraversalin interface- Step<Vertex,Vertex>
- Overrides:
- setTraversalin class- AbstractStep<Vertex,Vertex>
- Parameters:
- parentTraversal- the new traversal for this step
 
 - 
clonepublic AddVertexStartStep clone() Description copied from interface:StepCloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication. When cloning a step, it is important that the steps, the cloned step is equivalent to the state of the step whenStep.reset()is called. Moreover, the previous and next steps should be set toEmptyStep.
 
- 
 
-