Class ComputerResultStep<S>
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<ComputerResult,S>
- 
- org.apache.tinkerpop.gremlin.process.computer.traversal.step.map.ComputerResultStep<S>
 
 
- 
- All Implemented Interfaces:
- Serializable,- Cloneable,- Iterator<Traverser.Admin<S>>,- Step<ComputerResult,S>
 
 public final class ComputerResultStep<S> extends AbstractStep<ComputerResult,S> - Author:
- Marko A. Rodriguez (http://markorodriguez.com)
- See Also:
- Serialized Form
 
- 
- 
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 ComputerResultStep(Traversal.Admin traversal)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<Traverser.Admin<S>>attach(Iterator<Traverser.Admin<S>> iterator, Graph graph)ComputerResultStep<S>clone()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.protected Traverser.Admin<S>processNextStart()StringtoString()- 
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepaddLabel, addStart, addStarts, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hashCode, hasNext, hasStarts, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, reset, setId, setNextStep, setPreviousStep, setTraversal
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface java.util.IteratorforEachRemaining, remove
 
- 
 
- 
- 
- 
Constructor Detail- 
ComputerResultSteppublic ComputerResultStep(Traversal.Admin traversal) 
 
- 
 - 
Method Detail- 
attachpublic Iterator<Traverser.Admin<S>> attach(Iterator<Traverser.Admin<S>> iterator, Graph graph) 
 - 
processNextStartprotected Traverser.Admin<S> processNextStart() throws NoSuchElementException - Specified by:
- processNextStartin class- AbstractStep<ComputerResult,S>
- Throws:
- NoSuchElementException
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- AbstractStep<ComputerResult,S>
 
 - 
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.- Returns:
- the set of requirements
 
 - 
clonepublic ComputerResultStep<S> 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.- Specified by:
- clonein interface- Step<ComputerResult,S>
- Overrides:
- clonein class- AbstractStep<ComputerResult,S>
- Returns:
- The cloned step
 
 
- 
 
-