Package | Description |
---|---|
com.datastax.driver.dse.graph |
Modifier and Type | Method and Description |
---|---|
GraphNode |
GraphNode.get(int index) |
GraphNode |
GraphNode.get(String fieldName) |
GraphNode |
Element.getId()
Returns the element's identifier.
|
GraphNode |
Edge.getInV()
Returns the identifier of this edge's incoming/head vertex.
|
GraphNode |
Path.getObject(int index)
Returns the object associated with the given step of this path.
|
GraphNode |
Path.getObject(String label)
Returns the first object with the given label in this path.
|
GraphNode |
Edge.getOutV()
Returns the identifier of this edge's outgoing/tail vertex.
|
GraphNode |
Property.getValue()
Returns the property value.
|
GraphNode |
GraphResultSet.one()
Returns the next result.
|
Modifier and Type | Method and Description |
---|---|
List<GraphNode> |
GraphResultSet.all()
Returns all the remaining results as a list.
|
List<GraphNode> |
Path.getObjects()
Returns the objects traversed by this path,
or an empty list, if this path is empty.
|
List<GraphNode> |
Path.getObjects(String label)
Returns the objects with the given label in this path.
|
Iterator<GraphNode> |
GraphResultSet.iterator()
Returns an iterator over the results.
|