Package com.graphdbapi.driver.v1.graph
Class VertexInfoByPk
- java.lang.Object
-
- com.graphdbapi.driver.v1.graph.VertexInfoByPk
-
public class VertexInfoByPk extends Object
批量操作点的参数信息封装- Version:
- 3.3.0
-
-
Constructor Summary
Constructors Constructor Description VertexInfoByPk(String pk, String type)根据点PK创建点。VertexInfoByPk(String pk, String type, Map<String,Object> property)根据点PK创建点,集合属性默认追加VertexInfoByPk(String pk, String type, Map<String,Object> property, boolean isMerge)根据点PK创建点。
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetPk()返回点pkMap<String,Object>getProperty()返回点的属性集合StringgetType()返回点类型booleanisMerge()返回集合属性的追加(true)或覆盖(false)
-
-
-
Constructor Detail
-
VertexInfoByPk
public VertexInfoByPk(String pk, String type, Map<String,Object> property)
根据点PK创建点,集合属性默认追加- Parameters:
pk- 点pktype- 点类型property- 点属性
-
VertexInfoByPk
public VertexInfoByPk(String pk, String type, Map<String,Object> property, boolean isMerge)
根据点PK创建点。- Parameters:
pk- 点pktype- 点类型property- 点属性isMerge- 集合属性的追加(true)或覆盖(false)
-
-