*
* @param name the name of the AsPipe
* @return the extended Pipeline
*/
public GremlinPipeline<S, E> as(final String name) {
final GremlinPipeline<S, E> pipeline = this.add(new AsPipe(name, FluentUtility.removePreviousPipes(this, 1).get(0)));
this.asMap.refresh();
return pipeline;
}