Package | Description |
---|---|
com.tietoenator.trip.jxp.graph |
[EXPERIMENTAL] Graph database querying and manipulation.
|
Modifier and Type | Method and Description |
---|---|
TdbGraphRecord |
TdbGraph.createEdge(java.lang.String name,
int sourceRecordId,
int targetRecordId,
boolean commit)
Create an edge in the graph database currently associated with
this TdbGraph instance.
|
TdbGraphRecord |
TdbGraph.createEdge(java.lang.String name,
java.lang.String sourceDatabase,
int sourceRecordId,
java.lang.String targetDatabase,
int targetRecordId,
boolean commit)
Create an edge in the graph database currently associated with
this TdbGraph instance.
|
TdbGraphRecord |
TdbGraph.createEdge(java.lang.String name,
TdbRecord source,
TdbRecord target,
boolean commit)
Create an edge in the graph database currently associated with
this TdbGraph instance.
|
TdbGraphRecord |
TdbGraph.createVertex(java.lang.String label,
java.lang.String databaseName,
int recordId,
java.lang.String recordName,
boolean commit)
Create a vertex record in the graph database currently associated with
this TdbGraph instance.
|
TdbGraphRecord |
TdbGraph.createVertex(java.lang.String label,
TdbRecord reference,
boolean commit)
Create a vertex record in the graph database currently associated with
this TdbGraph instance.
|
TdbGraphRecord |
TdbGraphSet.getRecord(int index)
Returns a TdbGraphRecord object for a record in the the current graph set.
|