Package org.apache.graphar.vertices
Interface VerticesCollection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VertexIter
begin()
The iterator pointing to the first vertex.VertexIter
end()
The iterator pointing to the past-the-end element.VertexIter
find(@com.alibaba.fastffi.FFITypeAlias("graphar::IdType") long id)
The iterator pointing to the vertex with specific id.default Iterator<Vertex>
iterator()
Implement Iterable interface to support for-each loop.long
size()
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
begin
VertexIter begin()
The iterator pointing to the first vertex.
-
end
VertexIter end()
The iterator pointing to the past-the-end element.
-
find
VertexIter find(@com.alibaba.fastffi.FFITypeAlias("graphar::IdType") long id)
The iterator pointing to the vertex with specific id.
-
size
long size()
-
-