Examples of OrderByStep


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

    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

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

    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
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.