Package com.alibaba.graphscope.context
Class VertexPropertyContext<FRAG_T extends IFragment>
- java.lang.Object
-
- com.alibaba.graphscope.context.VertexPropertyContext<FRAG_T>
-
-
Constructor Summary
Constructors Constructor Description VertexPropertyContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longaddColumnβ(String str, ContextDataType contextDataType)protected voidcreateFFIContextβ(FRAG_T fragment)Must be called by jni, to create ffi context.DoubleColumn<FRAG_T>getDoubleColumnβ(long index)DoubleColumn<FRAG_T>getDoubleColumnβ(String name)IntColumngetIntColumnβ(long index)IntColumngetIntColumnβ(String name)LongColumngetLongColumnβ(long index)LongColumngetLongColumnβ(String name)
-
-
-
Method Detail
-
createFFIContext
protected void createFFIContextβ(FRAG_T fragment)
Must be called by jni, to create ffi context.- Parameters:
fragment- querying fragment
-
addColumn
public long addColumnβ(String str, ContextDataType contextDataType)
-
getDoubleColumn
public DoubleColumn<FRAG_T> getDoubleColumnβ(long index)
-
getDoubleColumn
public DoubleColumn<FRAG_T> getDoubleColumnβ(String name)
-
getIntColumn
public IntColumn getIntColumnβ(long index)
-
getLongColumn
public LongColumn getLongColumnβ(long index)
-
getLongColumn
public LongColumn getLongColumnβ(String name)
-
-