Uses of Interface
org.gephi.graph.api.NodeIterable
-
Packages that use NodeIterable Package Description org.gephi.graph.api Complete API description, whereGraphModel
is the entry point. -
-
Uses of NodeIterable in org.gephi.graph.api
Classes in org.gephi.graph.api that implement NodeIterable Modifier and Type Class Description static class
NodeIterable.NodeIterableEmpty
Empty node iterable.Fields in org.gephi.graph.api declared as NodeIterable Modifier and Type Field Description static NodeIterable
NodeIterable. EMPTY
The static empty iterable.Methods in org.gephi.graph.api that return NodeIterable Modifier and Type Method Description NodeIterable
GraphDiff. getAddedNodes()
Gets all added nodes.NodeIterable
Graph. getNeighbors(Node node)
Gets all neighbors of a given node.NodeIterable
Graph. getNeighbors(Node node, int type)
Gets all neighbors of a given node connected through the given edge type.NodeIterable
Graph. getNodes()
Gets all the nodes in the graph.NodeIterable
SpatialIndex. getNodesInArea(Rect2D rect)
NodeIterable
DirectedGraph. getPredecessors(Node node)
Gets the node's predecessors.NodeIterable
DirectedGraph. getPredecessors(Node node, int type)
Gets the node's predecessors through a specific edge type.NodeIterable
GraphDiff. getRemovedNodes()
Gets all removed nodes.NodeIterable
DirectedGraph. getSuccessors(Node node)
Gets the node's successors.NodeIterable
DirectedGraph. getSuccessors(Node node, int type)
Gets the node's successors through a specific edge type.
-