Java Code Examples for org.apache.tinkerpop.gremlin.process.traversal.step.map.VertexStep#getReturnClass()
The following examples show how to use
org.apache.tinkerpop.gremlin.process.traversal.step.map.VertexStep#getReturnClass() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HugeVertexStep.java From hugegraph with Apache License 2.0 | 5 votes |
public HugeVertexStep(final VertexStep<E> originVertexStep) { super(originVertexStep.getTraversal(), originVertexStep.getReturnClass(), originVertexStep.getDirection(), originVertexStep.getEdgeLabels()); originVertexStep.getLabels().forEach(this::addLabel); }
Example 2
Source File: JanusGraphVertexStep.java From grakn with GNU Affero General Public License v3.0 | 4 votes |
public JanusGraphVertexStep(VertexStep<E> originalStep) { super(originalStep.getTraversal(), originalStep.getReturnClass(), originalStep.getDirection(), originalStep.getEdgeLabels()); originalStep.getLabels().forEach(this::addLabel); this.hasContainers = new ArrayList<>(); this.limit = Query.NO_LIMIT; }
Example 3
Source File: HBaseVertexStep.java From hgraphdb with Apache License 2.0 | 4 votes |
public HBaseVertexStep(final VertexStep<E> originalVertexStep) { super(originalVertexStep.getTraversal(), originalVertexStep.getReturnClass(), originalVertexStep.getDirection(), originalVertexStep.getEdgeLabels()); originalVertexStep.getLabels().forEach(this::addLabel); }
Example 4
Source File: TitanVertexStep.java From titan1withtp3.1 with Apache License 2.0 | 4 votes |
public TitanVertexStep(VertexStep<E> originalStep) { super(originalStep.getTraversal(), originalStep.getReturnClass(), originalStep.getDirection(), originalStep.getEdgeLabels()); originalStep.getLabels().forEach(this::addLabel); this.hasContainers = new ArrayList<>(); this.limit = Query.NO_LIMIT; }