Class AllStep<S,S2>
- java.lang.Object
-
- org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep<S,S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.filter.FilterStep<S>
-
- org.apache.tinkerpop.gremlin.process.traversal.step.filter.AllStep<S,S2>
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterator<Traverser.Admin<S>>
,Step<S,S>
public final class AllStep<S,S2> extends FilterStep<S>
- 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 AllStep(Traversal.Admin traversal, P<S2> predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AllStep<S,S2>
clone()
Cloning is used to duplicate steps for the purpose of traversal optimization and OLTP replication.protected boolean
filter(Traverser.Admin<S> traverser)
Set<TraverserRequirement>
getRequirements()
Provide the necessaryTraverserRequirement
that must be met by the traverser in order for the step to function properly.String
toString()
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.filter.FilterStep
processNextStart
-
Methods inherited from class org.apache.tinkerpop.gremlin.process.traversal.step.util.AbstractStep
addLabel, addStart, addStarts, clearLabels, 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.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
-
-
-
Constructor Detail
-
AllStep
public AllStep(Traversal.Admin traversal, P<S2> predicate)
-
-
Method Detail
-
filter
protected boolean filter(Traverser.Admin<S> traverser)
- Specified by:
filter
in classFilterStep<S>
-
toString
public String toString()
- Overrides:
toString
in classAbstractStep<S,S>
-
clone
public AllStep<S,S2> clone()
Description copied from interface:Step
Cloning 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
.
-
getRequirements
public Set<TraverserRequirement> getRequirements()
Description copied from interface:Step
Provide the necessaryTraverserRequirement
that 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
-
-