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 long
addColumn(String str, ContextDataType contextDataType)
protected void
createFFIContext(FRAG_T fragment)
Must be called by jni, to create ffi context.DoubleColumn<FRAG_T>
getDoubleColumn(long index)
DoubleColumn<FRAG_T>
getDoubleColumn(String name)
IntColumn
getIntColumn(long index)
IntColumn
getIntColumn(String name)
LongColumn
getLongColumn(long index)
LongColumn
getLongColumn(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)
-
-