VID - the vertex ID typepublic interface EdgeBuilder<VID> extends GraphBuilder<VID>
GraphBuilderImpl.GraphBuilderImpl| Modifier and Type | Method and Description |
|---|---|
long |
getId()
Gets the id of the element (vertex or edge) this builder belongs to
|
boolean |
isIgnored()
Whether this edge builder ignores method calls
true or if it performs calls as usual false. |
EdgeBuilder<VID> |
setLabel(java.lang.String label)
Sets the new value of the label
|
EdgeBuilder<VID> |
setProperty(java.lang.String key, java.lang.Object value)
Sets the property value of this edge with the given
key to the given value. |
addEdge, addEdge, addEdge, addEdge, addEdge, addEdge, addVertex, addVertex, build, build, buildAsync, buildAsync, getConfigParameter, resetEdge, resetVertex, resetVertex, setConfigParameter, setDataSourceVersion, setRetainEdgeIds, setRetainIds, setRetainVertexIdslong getId()
boolean isIgnored()
true or if it performs calls as usual false. Some issues, such as incompatible changes in a ChangeSet, can be configured to be ignored. In that case, additional method calls on the returned edge builder object will be ignored.EdgeBuilder<VID> setLabel(java.lang.String label)
label - the new value of the labelEdgeBuilder<VID> setProperty(java.lang.String key, java.lang.Object value)
key to the given value. The first time this method is called, the type of value defines the type of the property.key - the property keyvalue - the value of the vertex property