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

Examples of com.tinkerpop.gremlin.process.graph.step.filter.WhereStep


    public default GraphTraversal<S, E> except(final Collection<E> exceptionCollection) {
        return this.addStep(new ExceptStep<>(this, exceptionCollection));
    }

    public default <E2> GraphTraversal<S, Map<String, E2>> where(final String firstKey, final String secondKey, final BiPredicate predicate) {
        return this.addStep(new WhereStep(this, firstKey, secondKey, predicate));
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.process.graph.step.filter.WhereStep

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.