use of org.apache.atlas.repository.graphdb.AtlasEdgeDirection in project incubator-atlas by apache.
the class Titan1Vertex method getEdges.
@Override
public Iterable<AtlasEdge<Titan1Vertex, Titan1Edge>> getEdges(AtlasEdgeDirection dir, String edgeLabel) {
Direction d = TitanObjectFactory.createDirection(dir);
Iterator<Edge> edges = getWrappedElement().edges(d, edgeLabel);
return graph.wrapEdges(edges);
}
Aggregations