Interface AdjList<VID_T,EDATA_T>
-
- Type Parameters:
VID_T- vertex id type.EDATA_T- edge data type.
- All Known Implementing Classes:
GrapeAdjListAdaptor,ProjectedAdjListAdaptor
public interface AdjList<VID_T,EDATA_T>This interface define the neighboring vertices and edge data for a vertex.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Nbr<VID_T,EDATA_T>begin()Get the begin Nbr.Nbr<VID_T,EDATA_T>end()Get the last Nbr.default Iterable<Nbr<VID_T,EDATA_T>>iterable()The iterator for adjlist.default Iterable<? extends NbrBase<VID_T,EDATA_T>>nbrBases()longsize()Get the size of this adjList.Stringtype()
-