Package | Description |
---|---|
com.orchestranetworks.addon.gram.graph |
Classes and interfaces for computing nodes and their relationships in a data value graph.
|
Modifier and Type | Class and Description |
---|---|
class |
NodeSpec
Defines the customization options for node labels and layout.
|
class |
RelationSpec
Defines the customization options for link labels and layout.
|
Modifier and Type | Method and Description |
---|---|
DisplaySpec |
GraphNodes.getDisplaySpec(GraphNode node)
Gets node label and layout settings.
|
DisplaySpec |
GraphNode.getLinkToSpec(GraphNode nodeRecord)
Gets the customization label and layout of the relationship from the current node to a specific node.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Map.Entry<GraphNode,DisplaySpec>> |
GraphNodes.iterator()
Returns an iterator that corresponds to all nodes and their values.
|
Iterator<Map.Entry<GraphNode,DisplaySpec>> |
GraphNode.iteratorNodesTo()
Returns an iterator that corresponds to all nodes that are linked from the current node.
|
Modifier and Type | Method and Description |
---|---|
void |
GraphNodes.addNode(GraphNode nodeRecord,
DisplaySpec customLayout)
Adds a specified
GraphNode to the graph with value of GraphCustomization. |
void |
GraphNode.addNodesTo(GraphNode graphNode,
DisplaySpec label)
Adds a specified
GraphNode to the list of nodes that link to the current node. |
Modifier and Type | Method and Description |
---|---|
void |
GraphNodes.addAll(Map<GraphNode,DisplaySpec> nodes)
Adds a collections of nodes to the current graph.
|
void |
GraphNode.addAllNodesTo(Map<GraphNode,DisplaySpec> linksTo)
Adds a collection of nodes to the list of nodes that link to the current node.
|