Uses of Interface
org.gephi.graph.api.GraphView
-
Packages that use GraphView Package Description org.gephi.filters.api API for graph filtering.org.gephi.graph.api Complete API description, whereGraphModel
is the entry point.org.gephi.statistics.spi Interfaces for creating new statistics and metrics algorihms. -
-
Uses of GraphView in org.gephi.filters.api
Methods in org.gephi.filters.api that return GraphView Modifier and Type Method Description GraphView
FilterController. filter(Query query)
Filtering method for API users. -
Uses of GraphView in org.gephi.graph.api
Methods in org.gephi.graph.api that return GraphView Modifier and Type Method Description GraphView
GraphModel. copyView(GraphView view)
Creates a new graph view based on an existing view.GraphView
GraphModel. copyView(GraphView view, boolean node, boolean edge)
Creates a new graph based on an existing view.GraphView
GraphModel. createView()
Creates a new graph view.GraphView
GraphModel. createView(boolean node, boolean edge)
Creates a new graph view.GraphView
Graph. getView()
Gets the graph view associated to this graph.GraphView
Subgraph. getView()
Gets the view associated with this subgraph.GraphView
GraphModel. getVisibleView()
Gets the visible view.Methods in org.gephi.graph.api with parameters of type GraphView Modifier and Type Method Description GraphView
GraphModel. copyView(GraphView view)
Creates a new graph view based on an existing view.GraphView
GraphModel. copyView(GraphView view, boolean node, boolean edge)
Creates a new graph based on an existing view.void
GraphModel. destroyView(GraphView view)
Destroys the given view.Object
Element. getAttribute(String key, GraphView view)
Gets the attribute for the given key and graph view.Object
Element. getAttribute(Column column, GraphView view)
Gets the attribute for the given column and graph view.DirectedSubgraph
GraphModel. getDirectedGraph(GraphView view)
Gets the directed graph for the given graph view.Index<Edge>
GraphModel. getEdgeIndex(GraphView view)
Gets the edge index for the given graph view.TimeIndex<Edge>
GraphModel. getEdgeTimeIndex(GraphView view)
Gets the edge time index for the given view.Index<Element>
GraphModel. getElementIndex(Table table, GraphView view)
Gets the node or edge index for the given graph view.Subgraph
GraphModel. getGraph(GraphView view)
Gets the graph for the given graph view.Index<Node>
GraphModel. getNodeIndex(GraphView view)
Gets the node index for the given graph view.TimeIndex<Node>
GraphModel. getNodeTimeIndex(GraphView view)
Gets the node time index for the given view.Interval
GraphModel. getTimeBounds(GraphView view)
Gets the time bounds for the given graph view.UndirectedSubgraph
GraphModel. getUndirectedGraph(GraphView view)
Gets the undirected graph for the given graph view.double
Edge. getWeight(GraphView view)
Returns the edge's weight in the given graph view.void
GraphModel. setTimeInterval(GraphView view, Interval interval)
Sets the given time interval to the view.void
GraphModel. setVisibleView(GraphView view)
Sets the visible view. -
Uses of GraphView in org.gephi.statistics.spi
Methods in org.gephi.statistics.spi with parameters of type GraphView Modifier and Type Method Description void
DynamicStatistics. loop(GraphView window, Interval interval)
Iteration of the dynamic statistics algorithm on a new interval.
-