Package org.apache.graphar.vertices
Interface VerticesCollection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description VertexIterbegin()The iterator pointing to the first vertex.VertexIterend()The iterator pointing to the past-the-end element.VertexIterfind(@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.longsize()-
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()
-
-