Package com.tinkerpop.pipes

Examples of com.tinkerpop.pipes.FunctionPipe


     *
     * @param function the function of the FunctionPipe
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, ?> step(final PipeFunction function) {
        return this.add(new FunctionPipe(FluentUtility.prepareFunction(this.asMap, function)));
    }
View Full Code Here


        this.addPipe(pipe);
        return (PipesPipeline<S, T>) this;
    }

    public PipesPipeline<S, ?> step(final PipeFunction function) {
        return this.add(new FunctionPipe(function));
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.pipes.FunctionPipe

Copyright © 2018 www.massapicom. 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.