Examples of LinkPipe


Examples of com.tinkerpop.pipes.sideeffect.LinkPipe

     * @param label     the edge label
     * @param namedStep the step name that has the other vertex to link to
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, Vertex> linkOut(final String label, final String namedStep) {
        return this.add(new LinkPipe(Direction.OUT, label, FluentUtility.getAsPipe(this, namedStep)));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.sideeffect.LinkPipe

     * @param label     the edge label
     * @param namedStep the step name that has the other vertex to link to
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, Vertex> linkIn(final String label, final String namedStep) {
        return this.add(new LinkPipe(Direction.IN, label, FluentUtility.getAsPipe(this, namedStep)));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.sideeffect.LinkPipe

     * @param label     the edge label
     * @param namedStep the step name that has the other vertex to link to
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, Vertex> linkBoth(final String label, final String namedStep) {
        return this.add(new LinkPipe(Direction.BOTH, label, FluentUtility.getAsPipe(this, namedStep)));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.sideeffect.LinkPipe

     * @param label the edge label
     * @param other the other vertex
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, Vertex> linkOut(final String label, final Vertex other) {
        return this.add(new LinkPipe(Direction.OUT, label, other));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.sideeffect.LinkPipe

     * @param label the edge label
     * @param other the other vertex
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, Vertex> linkIn(final String label, final Vertex other) {
        return this.add(new LinkPipe(Direction.IN, label, other));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.sideeffect.LinkPipe

     * @param label the edge label
     * @param other the other vertex
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, Vertex> linkBoth(final String label, final Vertex other) {
        return this.add(new LinkPipe(Direction.BOTH, label, other));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.