public class VertexStep<E extends Element> extends FlatMapStep<Vertex,E> implements AutoCloseable, Configuring
Modifier and Type | Field and Description |
---|---|
protected Parameters |
parameters |
id, labels, nextEnd, nextStep, previousStep, starts, traversal, traverserStepIdAndLabelsSetByChild
Constructor and Description |
---|
VertexStep(Traversal.Admin traversal,
Class<E> returnClass,
Direction direction,
String... edgeLabels) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
configure(Object... keyValues)
Accept a configuration to the
Step . |
protected Iterator<E> |
flatMap(Traverser.Admin<Vertex> traverser) |
Direction |
getDirection() |
String[] |
getEdgeLabels() |
Parameters |
getParameters()
Gets the parameters on the step.
|
Set<TraverserRequirement> |
getRequirements()
Provide the necessary
TraverserRequirement that must be met by the traverser in order for the step to
function properly. |
Class<E> |
getReturnClass() |
int |
hashCode() |
boolean |
returnsEdge() |
boolean |
returnsVertex() |
void |
reverseDirection() |
String |
toString() |
closeIterator, processNextStart, reset
addLabel, addStart, addStarts, clone, equals, getId, getLabels, getNextStep, getPreviousStep, getStarts, getTraversal, hasNext, isTraverserStepIdAndLabelsSetByChild, next, prepareTraversalForNextStep, removeLabel, setId, setNextStep, setPreviousStep, setTraversal
finalize, getClass, notify, notifyAll, wait, wait, wait
forEachRemaining, remove
protected Parameters parameters
public VertexStep(Traversal.Admin traversal, Class<E> returnClass, Direction direction, String... edgeLabels)
public Parameters getParameters()
Parameterizing
getParameters
in interface Parameterizing
public void configure(Object... keyValues)
Configuring
Step
. Note that this interface extends Parameterizing
and so
there is an expectation that the Step
implementation will have a Parameters
instance that will
house any values passed to this method. Storing these configurations in Parameters
is 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).configure
in interface Configuring
protected Iterator<E> flatMap(Traverser.Admin<Vertex> traverser)
flatMap
in class FlatMapStep<Vertex,E extends Element>
public Direction getDirection()
public String[] getEdgeLabels()
public void reverseDirection()
public boolean returnsVertex()
public boolean returnsEdge()
public String toString()
toString
in class AbstractStep<Vertex,E extends Element>
public int hashCode()
hashCode
in class AbstractStep<Vertex,E extends Element>
public Set<TraverserRequirement> getRequirements()
Step
TraverserRequirement
that must be met by the traverser in order for the step to
function properly. The provided default implements returns an empty set.getRequirements
in interface Step<Vertex,E extends Element>
public void close() throws Exception
close
in interface AutoCloseable
Exception
Copyright © 2013–2021 Apache Software Foundation. All rights reserved.