Uses of Class
com.storedobject.chart.GraphData.Node
Packages that use GraphData.Node
-
Uses of GraphData.Node in com.storedobject.chart
Classes in com.storedobject.chart with type parameters of type GraphData.NodeModifier and TypeClassDescriptionclass
GraphData<N extends GraphData.Node>
The GraphData class represents a data structure used for managing and visualizing graph-based data.Subclasses of GraphData.Node in com.storedobject.chartModifier and TypeClassDescriptionstatic class
TheValueNode
class represents a type ofNode
that holds a numerical value.static class
A concrete implementation of theGraphData.Node
class representing a node in a 2D space.Methods in com.storedobject.chart that return GraphData.NodeModifier and TypeMethodDescriptionGraphData.Edge.getDestinationNode()
Retrieves the destination node of this edge.GraphData.Edge.getSourceNode()
Retrieves the source node of this edge.GraphData.XYNode.x
(double x) Sets the x-coordinate of this node and returns the current instance.GraphData.XYNode.y
(double y) Sets the y-coordinate value for the node and returns the node instance.Methods in com.storedobject.chart with parameters of type GraphData.NodeModifier and TypeMethodDescriptionfinal void
Adds one or more nodes to the list of nodes if they are not null.GraphData.Edge.connectTo
(GraphData.Node target) Establishes a connection from the current destination node of thisEdge
to the specified target node by creating or retrieving an edge between them.GraphData.Node.connectTo
(GraphData.Node target) Connects the current node to the specified target node by creating an edge between them.Adds one or more nodes to the graph and returns the updated graph data.