Class AddEdgeStartStep
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<Edge,Edge>
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.map.AddEdgeStartStep
 
 
- 
- All Implemented Interfaces:
- Serializable,- AutoCloseable,- Cloneable,- Iterator<Traverser.Admin<Edge>>,- Step<Edge,Edge>,- Configuring,- FromToModulating,- Mutating<Event.EdgeAddedEvent>,- Parameterizing,- Scoping,- TraversalParent,- Writing<Event.EdgeAddedEvent>
 
 public class AddEdgeStartStep extends AbstractStep<Edge,Edge> implements Writing<Event.EdgeAddedEvent>, TraversalParent, Scoping, FromToModulating - Author:
- Marko A. Rodriguez (http://markorodriguez.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 AddEdgeStartStep(Traversal.Admin traversal, String edgeLabel)AddEdgeStartStep(Traversal.Admin traversal, Traversal<?,String> edgeLabelTraversal)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddFrom(Traversal.Admin<?,?> fromObject)voidaddTo(Traversal.Admin<?,?> toObject)AddEdgeStartStepclone()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.EdgeAddedEvent>getMutatingCallbackRegistry()Gets the callback registry for events that the step raises.ParametersgetParameters()Gets the parameters on the step.Set<String>getScopeKeys()Get the labels that this scoping step will access during the traversalinthashCode()protected Traverser.Admin<Edge>processNextStart()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, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, reset, setId, setNextStep, setPreviousStep
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.FromToModulatingaddFrom, addTo
 - 
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.Stepequals, getRequirements
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.TraversalParentaddGlobalChild, addLocalChild, asStep, close, getGlobalChildren, getSelfAndChildRequirements, integrateChild, removeGlobalChild, removeLocalChild, replaceLocalChild
 
- 
 
- 
- 
- 
Constructor Detail- 
AddEdgeStartSteppublic AddEdgeStartStep(Traversal.Admin traversal, String edgeLabel) 
 - 
AddEdgeStartSteppublic AddEdgeStartStep(Traversal.Admin traversal, Traversal<?,String> edgeLabelTraversal) 
 
- 
 - 
Method Detail- 
getLocalChildrenpublic <S,E> List<Traversal.Admin<S,E>> getLocalChildren() - Specified by:
- getLocalChildrenin interface- TraversalParent
 
 - 
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
 
 - 
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
 
 - 
addTopublic void addTo(Traversal.Admin<?,?> toObject) - Specified by:
- addToin interface- FromToModulating
 
 - 
addFrompublic void addFrom(Traversal.Admin<?,?> fromObject) - Specified by:
- addFromin interface- FromToModulating
 
 - 
processNextStartprotected Traverser.Admin<Edge> processNextStart() - Specified by:
- processNextStartin class- AbstractStep<Edge,Edge>
 
 - 
getMutatingCallbackRegistrypublic CallbackRegistry<Event.EdgeAddedEvent> getMutatingCallbackRegistry() Description copied from interface:MutatingGets the callback registry for events that the step raises.- Specified by:
- getMutatingCallbackRegistryin interface- Mutating<Event.EdgeAddedEvent>
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- AbstractStep<Edge,Edge>
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- AbstractStep<Edge,Edge>
 
 - 
setTraversalpublic void setTraversal(Traversal.Admin<?,?> parentTraversal) Description copied from interface:StepSet theTraversalthat this step is contained within.- Specified by:
- setTraversalin interface- Step<Edge,Edge>
- Overrides:
- setTraversalin class- AbstractStep<Edge,Edge>
- Parameters:
- parentTraversal- the new traversal for this step
 
 - 
clonepublic AddEdgeStartStep 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.
 
- 
 
-