Package com.tinkerpop.gremlin.structure.strategy.process.graph.step.sideEffect

Examples of com.tinkerpop.gremlin.structure.strategy.process.graph.step.sideEffect.StrategyWrappedGraphStep


        TraversalStrategies.GlobalCache.registerStrategies(StrategyWrappedGraphTraversal.class, traversalStrategies);
    }

    public StrategyWrappedGraphTraversal(final Class<E> returnClass, final GraphTraversal<S, E> graphTraversal, final StrategyWrappedGraph strategyWrappedGraph) {
        super(strategyWrappedGraph);
        this.addStep(new StrategyWrappedGraphStep(this, returnClass, graphTraversal, strategyWrappedGraph));
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.structure.strategy.process.graph.step.sideEffect.StrategyWrappedGraphStep

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.