Package com.tinkerpop.pipes.transform

Examples of com.tinkerpop.pipes.transform.OrderMapPipe$IncrementFunction


     *
     * @param compareFunction a function to compare to map entries
     * @return the extended Pipeline
     */
    public GremlinPipeline<S, ?> orderMap(final PipeFunction<Pair<Map.Entry, Map.Entry>, Integer> compareFunction) {
        return this.add(new OrderMapPipe(FluentUtility.prepareFunction(this.asMap, compareFunction)));
    }
View Full Code Here


    public PipesPipeline<S, ?> orderMap(final TransformPipe.Order order) {
        return this.add(new OrderMapPipe<Object>(order));
    }

    public PipesPipeline<S, ?> orderMap(final PipeFunction<Pair<Map.Entry, Map.Entry>, Integer> compareFunction) {
        return this.add(new OrderMapPipe(FluentUtility.prepareFunction(this.asMap, compareFunction)));
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.pipes.transform.OrderMapPipe$IncrementFunction

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.