All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tinkerpop.blueprints.impls.orient.OrientClassVertexIterable Maven / Gradle / Ivy

There is a newer version: 3.2.33
Show newest version
package com.tinkerpop.blueprints.impls.orient;

import com.tinkerpop.blueprints.Vertex;
import java.util.Iterator;

public class OrientClassVertexIterable extends OrientElementIterable {

  private String klass;

  public OrientClassVertexIterable(OrientBaseGraph graph, Iterable iterable, String klass) {
    super(graph, iterable);
    this.klass = klass;
  }

  @Override
  public Iterator iterator() {
    return new OrientClassVertexIterator(super.graph, super.iterator(), klass);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy