Class SubgraphStep
- java.lang.Object
 - 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,S>
 - 
- org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.SideEffectStep<Edge>
 - 
- org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.SubgraphStep
 
 
 
 
- 
- All Implemented Interfaces:
 Serializable,Cloneable,Iterator<Traverser.Admin<Edge>>,Step<Edge,Edge>,Generating,SideEffectCapable
public final class SubgraphStep extends SideEffectStep<Edge> implements SideEffectCapable
A side-effect step that produces an edge induced subgraph.- Author:
 - Stephen Mallette (http://stephen.genoprime.com), Marko A. Rodriguez (http://markorodriguez.com)
 - See Also:
 - Serialized Form
 
 
- 
- 
Field Summary
- 
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild 
 - 
 
- 
Constructor Summary
Constructors Constructor Description SubgraphStep(Traversal.Admin traversal, String sideEffectKey) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SubgraphStepclone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.Set<TraverserRequirement>getRequirements()Provide the necessaryTraverserRequirementthat must be met by the traverser in order for the step to function properly.StringgetSideEffectKey()The side-effect key of the step.inthashCode()protected voidsideEffect(Traverser.Admin<Edge> traverser)StringtoString()- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.sideEffect.SideEffectStep
processNextStart 
- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, reset, setId, setNextStep, setPreviousStep, setTraversal 
- 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait 
- 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.Generating
generateFinalResult 
- 
Methods inherited from interface java.util.Iterator
forEachRemaining, remove 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
SubgraphStep
public SubgraphStep(Traversal.Admin traversal, String sideEffectKey)
 
 - 
 
- 
Method Detail
- 
sideEffect
protected void sideEffect(Traverser.Admin<Edge> traverser)
- Specified by:
 sideEffectin classSideEffectStep<Edge>
 
- 
getSideEffectKey
public String getSideEffectKey()
Description copied from interface:SideEffectCapableThe side-effect key of the step.- Specified by:
 getSideEffectKeyin interfaceSideEffectCapable- Returns:
 - the side-effect key
 
 
- 
toString
public String toString()
- Overrides:
 toStringin classAbstractStep<Edge,Edge>
 
- 
getRequirements
public 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 interfaceStep<Edge,Edge>- Returns:
 - the set of requirements
 
 
- 
clone
public SubgraphStep 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. 
- 
hashCode
public int hashCode()
- Overrides:
 hashCodein classAbstractStep<Edge,Edge>
 
 - 
 
 -