Class GraphStepPlaceholder<S,E extends Element>
- java.lang.Object
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,E>
- 
- org.apache.tinkerpop.gremlin.process.traversal.step.map.GraphStepPlaceholder<S,E>
 
 
- 
- All Implemented Interfaces:
- Serializable,- AutoCloseable,- Cloneable,- Iterator<Traverser.Admin<E>>,- Step<S,E>,- GraphComputing,- GValueHolder<S,E>,- GraphStepContract<S,E>
 
 public class GraphStepPlaceholder<S,E extends Element> extends AbstractStep<S,E> implements GValueHolder<S,E>, GraphStepContract<S,E> - See Also:
- Serialized Form
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected GValue<?>[]idsprotected Class<E>returnClass- 
Fields inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStepid, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
 - 
Fields inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.map.GraphStepContractCONCRETE_STEPS
 
- 
 - 
Constructor SummaryConstructors Constructor Description GraphStepPlaceholder(Traversal.Admin traversal, Class<E> returnClass, boolean isStart, GValue<?>... ids)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description GraphStep<S,E>asConcreteStep()voidclearIds()GraphStepPlaceholder<S,E>clone()Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.voidclose()Collection<GValue<?>>getGValues()Object[]getIds()GValue<?>[]getIdsAsGValues()Class<E>getReturnClass()inthashCode()booleanisParameterized()booleanisStartStep()voidonGraphComputer()The step will be executing on aGraphComputer.protected Traverser.Admin<E>processNextStart()booleanreturnsEdge()booleanreturnsVertex()StringtoString()voidupdateVariable(String name, Object value)- 
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, reset, setId, setNextStep, setPreviousStep, setTraversal
 - 
Methods inherited from class java.lang.Objectfinalize, getClass, notify, notifyAll, wait, wait, wait
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.GraphComputingatMaster
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.step.GValueHolderreduce
 - 
Methods inherited from interface java.util.IteratorforEachRemaining, hasNext, next, remove
 - 
Methods inherited from interface org.apache.tinkerpop.gremlin.process.traversal.StepaddLabel, addStart, addStarts, clearLabels, equals, getId, getLabels, getNextStep, getPreviousStep, getRequirements, getTraversal, hasStarts, removeLabel, reset, setId, setNextStep, setPreviousStep, setTraversal
 
- 
 
- 
- 
- 
Constructor Detail- 
GraphStepPlaceholderpublic GraphStepPlaceholder(Traversal.Admin traversal, Class<E> returnClass, boolean isStart, GValue<?>... ids) 
 
- 
 - 
Method Detail- 
closepublic void close() - Specified by:
- closein interface- AutoCloseable
 
 - 
getReturnClasspublic Class<E> getReturnClass() - Specified by:
- getReturnClassin interface- GraphStepContract<S,E extends Element>
 
 - 
isStartSteppublic boolean isStartStep() - Specified by:
- isStartStepin interface- GraphStepContract<S,E extends Element>
 
 - 
returnsVertexpublic boolean returnsVertex() - Specified by:
- returnsVertexin interface- GraphStepContract<S,E extends Element>
 
 - 
returnsEdgepublic boolean returnsEdge() - Specified by:
- returnsEdgein interface- GraphStepContract<S,E extends Element>
 
 - 
getIdspublic Object[] getIds() - Specified by:
- getIdsin interface- GraphStepContract<S,E extends Element>
 
 - 
getIdsAsGValuespublic GValue<?>[] getIdsAsGValues() - Specified by:
- getIdsAsGValuesin interface- GraphStepContract<S,E extends Element>
 
 - 
clearIdspublic void clearIds() - Specified by:
- clearIdsin interface- GraphStepContract<S,E extends Element>
 
 - 
onGraphComputerpublic void onGraphComputer() Description copied from interface:GraphComputingThe step will be executing on aGraphComputer.- Specified by:
- onGraphComputerin interface- GraphComputing
 
 - 
processNextStartprotected Traverser.Admin<E> processNextStart() - Specified by:
- processNextStartin class- AbstractStep<S,E extends Element>
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- AbstractStep<S,E extends Element>
 
 - 
asConcreteSteppublic GraphStep<S,E> asConcreteStep() - Specified by:
- asConcreteStepin interface- GValueHolder<S,E extends Element>
 
 - 
isParameterizedpublic boolean isParameterized() - Specified by:
- isParameterizedin interface- GValueHolder<S,E extends Element>
 
 - 
updateVariablepublic void updateVariable(String name, Object value) - Specified by:
- updateVariablein interface- GValueHolder<S,E extends Element>
 
 - 
getGValuespublic Collection<GValue<?>> getGValues() - Specified by:
- getGValuesin interface- GValueHolder<S,E extends Element>
 
 - 
clonepublic GraphStepPlaceholder<S,E> 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.
 
- 
 
-