Uses of Interface
org.gephi.graph.api.Graph
-
Packages that use Graph Package Description org.gephi.appearance.api API for manipulating element appearance.org.gephi.datalab.api Data Laboratory API, all capabilites are exposed through various controllers.org.gephi.filters.spi Interfaces for creating new filter classes.org.gephi.graph.api Complete API description, whereGraphModel
is the entry point.org.gephi.preview.spi Interfaces for creating new renderers, item builders and render targets. -
-
Uses of Graph in org.gephi.appearance.api
Methods in org.gephi.appearance.api that return Graph Modifier and Type Method Description Graph
Function. getGraph()
Returns the graph this function is being applied on.Methods in org.gephi.appearance.api with parameters of type Graph Modifier and Type Method Description int
Partition. count(Object value, Graph graph)
Returns the number of elements for the given value.int
Partition. getElementCount(Graph graph)
Returns the number of elements that have a value in this partition.Number
Ranking. getMaxValue(Graph graph)
Returns the maximum value in this ranking.Number
Ranking. getMinValue(Graph graph)
Returns the minimum value in this ranking.float
Ranking. getNormalizedValue(Element element, Graph graph)
Returns the element's normalized value for this ranking.Collection
Partition. getSortedValues(Graph graph)
Returns the same collection asPartition.getValues(Graph graph)
but sorted descendant in counts.Object
Partition. getValue(Element element, Graph graph)
Returns the element's value for this partition.Number
Ranking. getValue(Element element, Graph graph)
Returns the element's value for this ranking.Collection
Partition. getValues(Graph graph)
Returns the collection of values this partition represents.float
Partition. percentage(Object value, Graph graph)
Returns the percentage of elements with the given value.void
Partition. setColors(Graph graph, Color[] colors)
Sets the colors for all values.int
Partition. size(Graph graph)
Returns the number of values this partition represents. -
Uses of Graph in org.gephi.datalab.api
Methods in org.gephi.datalab.api with parameters of type Graph Modifier and Type Method Description Edge
GraphElementsController. createEdge(String id, Node source, Node target, boolean directed, Object typeLabel, Graph graph)
Creates and edge between source and target node (if it does not already exist), directed or undirected, in the current graph.Edge
GraphElementsController. createEdge(String id, Node source, Node target, boolean directed, Graph graph)
Creates and edge between source and target node (if it does not already exist), directed or undirected, in the current graph.Edge
GraphElementsController. createEdge(Node source, Node target, boolean directed, Object typeLabel, Graph graph)
Creates and edge between source and target node (if it does not already exist), directed or undirected.Edge
GraphElementsController. createEdge(Node source, Node target, boolean directed, Graph graph)
Creates and edge between source and target node (if it does not already exist), directed or undirected.Node
GraphElementsController. createNode(String label, String id, Graph graph)
Creates a node with the given id and label.Node
GraphElementsController. createNode(String label, Graph graph)
Creates a node with default id and the given label.Node
GraphElementsController. mergeNodes(Graph graph, Node[] nodes, Node selectedNode, Column[] columns, AttributeRowsMergeStrategy[] mergeStrategies, boolean deleteMergedNodes)
Merges 2 or more nodes into a new one node that has all the edges of the merged nodes. -
Uses of Graph in org.gephi.filters.spi
Methods in org.gephi.filters.spi that return Graph Modifier and Type Method Description Graph
ComplexFilter. filter(Graph graph)
Graph
Operator. filter(Graph graph, Filter[] filters)
Graph
Operator. filter(Subgraph[] graphs)
Methods in org.gephi.filters.spi with parameters of type Graph Modifier and Type Method Description boolean
ElementFilter. evaluate(Graph graph, K element)
Graph
ComplexFilter. filter(Graph graph)
Graph
Operator. filter(Graph graph, Filter[] filters)
Number[]
RangeFilter. getValues(Graph graph)
boolean
ElementFilter. init(Graph graph)
-
Uses of Graph in org.gephi.graph.api
Subinterfaces of Graph in org.gephi.graph.api Modifier and Type Interface Description interface
DirectedGraph
Directed graph.interface
DirectedSubgraph
A directed subgraph.interface
Subgraph
A subgraph is a subset of a graph based on a graph view.interface
UndirectedGraph
Undirected graphinterface
UndirectedSubgraph
Undirected subgraph.Methods in org.gephi.graph.api that return Graph Modifier and Type Method Description Graph
GraphModel. getGraph()
Gets the full graph.Graph
GraphObserver. getGraph()
Gets the graph this observer is observing.Graph
Table. getGraph()
Returns the graph this table is associated with.Graph
GraphModel. getGraphVisible()
Get the visible graph.Graph
Subgraph. getRootGraph()
Return the root graph this subgraph is based on.Methods in org.gephi.graph.api with parameters of type Graph Modifier and Type Method Description GraphObserver
GraphModel. createGraphObserver(Graph graph, boolean withGraphDiff)
Creates and returns a new graph observer. -
Uses of Graph in org.gephi.preview.spi
Methods in org.gephi.preview.spi with parameters of type Graph Modifier and Type Method Description Item[]
ItemBuilder. getItems(Graph graph)
Build items from thegraph
.
-