
com.tinkerpop.gremlin.pipes.transform.IndexElementsPipe Maven / Gradle / Ivy
package com.tinkerpop.gremlin.pipes.transform;
import com.tinkerpop.blueprints.Element;
import com.tinkerpop.blueprints.Index;
import com.tinkerpop.pipes.transform.IdentityPipe;
/**
* @author Marko A. Rodriguez (http://markorodriguez.com)
*/
public class IndexElementsPipe extends IdentityPipe {
public IndexElementsPipe(final Index index, final String key, final Object value) {
super.setStarts(index.get(key, value).iterator());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy