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)
-
-