Package com.tinkerpop.gremlin.process.graph.step.map

Examples of com.tinkerpop.gremlin.process.graph.step.map.OrderByStep$ElementComparator


    public default GraphTraversal<S, E> orderBy(final T accessor) {
        return this.orderBy(accessor, Order.incr);
    }

    public default <C> GraphTraversal<S, E> orderBy(final String key, final Comparator<C>... comparators) {
        return this.addStep(new OrderByStep(this, key, comparators));
    }
View Full Code Here


    public default <C> GraphTraversal<S, E> orderBy(final String key, final Comparator<C>... comparators) {
        return this.addStep(new OrderByStep(this, key, comparators));
    }

    public default <C> GraphTraversal<S, E> orderBy(final T accessor, final Comparator<C>... comparators) {
        return this.addStep(new OrderByStep(this, accessor, comparators));
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.process.graph.step.map.OrderByStep$ElementComparator

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.