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));
}