Package com.alibaba.graphscope.ds
Interface VertexArray.Factory<VID,T>
-
- Type Parameters:
T
- vertex data type.VID
- vertex id type.
- All Known Implementing Classes:
VertexArray_cxx_0xbe45efc3Factory
,VertexArray_cxx_0xd8921725Factory
,VertexArray_cxx_0xd8bd4666Factory
- Enclosing interface:
- VertexArray<VID,T>
public static interface VertexArray.Factory<VID,T>
Factory class for VertexArray.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VertexArray<VID,T>
create()
Create an empty vertex Array.
-
-
-
Method Detail
-
create
VertexArray<VID,T> create()
Create an empty vertex Array. Please callVertexArray.init(VertexRange)
to init this array.- Returns:
- created vertex array.
-
-