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, whereGraphModelis 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 GraphFunction. 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 intPartition. count(Object value, Graph graph)Returns the number of elements for the given value.intPartition. getElementCount(Graph graph)Returns the number of elements that have a value in this partition.NumberRanking. getMaxValue(Graph graph)Returns the maximum value in this ranking.NumberRanking. getMinValue(Graph graph)Returns the minimum value in this ranking.floatRanking. getNormalizedValue(Element element, Graph graph)Returns the element's normalized value for this ranking.CollectionPartition. getSortedValues(Graph graph)Returns the same collection asPartition.getValues(Graph graph)but sorted descendant in counts.ObjectPartition. getValue(Element element, Graph graph)Returns the element's value for this partition.NumberRanking. getValue(Element element, Graph graph)Returns the element's value for this ranking.CollectionPartition. getValues(Graph graph)Returns the collection of values this partition represents.floatPartition. percentage(Object value, Graph graph)Returns the percentage of elements with the given value.voidPartition. setColors(Graph graph, Color[] colors)Sets the colors for all values.intPartition. 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 EdgeGraphElementsController. 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.EdgeGraphElementsController. 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.EdgeGraphElementsController. 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.EdgeGraphElementsController. 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.NodeGraphElementsController. createNode(String label, String id, Graph graph)Creates a node with the given id and label.NodeGraphElementsController. createNode(String label, Graph graph)Creates a node with default id and the given label.NodeGraphElementsController. 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 GraphComplexFilter. filter(Graph graph)GraphOperator. filter(Graph graph, Filter[] filters)GraphOperator. filter(Subgraph[] graphs)Methods in org.gephi.filters.spi with parameters of type Graph Modifier and Type Method Description booleanElementFilter. evaluate(Graph graph, K element)GraphComplexFilter. filter(Graph graph)GraphOperator. filter(Graph graph, Filter[] filters)Number[]RangeFilter. getValues(Graph graph)booleanElementFilter. init(Graph graph) -
Uses of Graph in org.gephi.graph.api
Subinterfaces of Graph in org.gephi.graph.api Modifier and Type Interface Description interfaceDirectedGraphDirected graph.interfaceDirectedSubgraphA directed subgraph.interfaceSubgraphA subgraph is a subset of a graph based on a graph view.interfaceUndirectedGraphUndirected graphinterfaceUndirectedSubgraphUndirected subgraph.Methods in org.gephi.graph.api that return Graph Modifier and Type Method Description GraphGraphModel. getGraph()Gets the full graph.GraphGraphObserver. getGraph()Gets the graph this observer is observing.GraphTable. getGraph()Returns the graph this table is associated with.GraphGraphModel. getGraphVisible()Get the visible graph.GraphSubgraph. 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 GraphObserverGraphModel. 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.
-