Examples of OrderPipe


Examples of com.tinkerpop.pipes.transform.OrderPipe

     * This step will sort the objects in the stream in a default Comparable order.
     *
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, E> order() {
        return this.add(new OrderPipe());
    }
View Full Code Here

Examples of com.tinkerpop.pipes.transform.OrderPipe

     *
     * @param order if the stream is composed of comparable objects, then increment or decrement can be specified
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, E> order(TransformPipe.Order order) {
        return this.add(new OrderPipe(order));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.transform.OrderPipe

     *
     * @param order if the stream is composed of comparable objects, then increment or decrement can be specified
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, E> order(Tokens.T order) {
        return this.add(new OrderPipe(Tokens.mapOrder(order)));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.transform.OrderPipe

     *
     * @param compareFunction a comparator function of two objects of type E
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, E> order(final PipeFunction<Pair<E, E>, Integer> compareFunction) {
        return this.add(new OrderPipe(FluentUtility.prepareFunction(this.asMap, compareFunction)));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.transform.OrderPipe

    public PipesPipeline<S, E> memoize(final int numberedStep, final Map map) {
        return this.add(new MemoizePipe(new Pipeline(FluentUtility.removePreviousPipes(this, numberedStep)), map));
    }

    public PipesPipeline<S, E> order() {
        return this.add(new OrderPipe());
    }
View Full Code Here

Examples of com.tinkerpop.pipes.transform.OrderPipe

    public PipesPipeline<S, E> order() {
        return this.add(new OrderPipe());
    }

    public PipesPipeline<S, E> order(TransformPipe.Order order) {
        return this.add(new OrderPipe(order));
    }
View Full Code Here

Examples of com.tinkerpop.pipes.transform.OrderPipe

    public PipesPipeline<S, E> order(TransformPipe.Order order) {
        return this.add(new OrderPipe(order));
    }

    public PipesPipeline<S, E> order(final PipeFunction<Pair<E, E>, Integer> compareFunction) {
        return this.add(new OrderPipe(FluentUtility.prepareFunction(this.asMap, compareFunction)));
    }
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.