Package com.graphdbapi.driver.v1.graph
Class EdgeInfoByVertexId
- java.lang.Object
-
- com.graphdbapi.driver.v1.graph.EdgeInfoByVertexId
-
public class EdgeInfoByVertexId extends Object
批量操作边的基础信息封装- Version:
- 3.3.0
-
-
Constructor Summary
Constructors Constructor Description EdgeInfoByVertexId(long fromId, long toId, String type, Map<String,Object> property)根据点id创建边,集合属性默认追加EdgeInfoByVertexId(long fromId, long toId, String type, Map<String,Object> property, boolean isMerge)根据点id创建边
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetFromId()返回边的起始点Map<String,Object>getProperty()返回边的属性集合LonggetToId()返回边的终止点StringgetType()返回边类型booleanisMerge()返回集合属性的追加(true)或覆盖(false)
-