Uses of Interface
org.gephi.graph.api.Edge
-
Packages that use Edge Package Description org.gephi.graph.api Complete API description, whereGraphModelis the entry point. -
-
Uses of Edge in org.gephi.graph.api
Methods in org.gephi.graph.api that return Edge Modifier and Type Method Description EdgeDirectedGraph. getEdge(Node source, Node target)Gets the edge adjacent to source and target.EdgeDirectedGraph. getEdge(Node source, Node target, int type)Gets the edge adjacent to source and target with an edge of the given type.EdgeGraph. getEdge(Object id)Gets an edge by its identifier.EdgeGraph. getEdge(Node node1, Node node2)Gets the edge adjacent to node1 and node2.EdgeGraph. getEdge(Node node1, Node node2, int type)Gets the edge adjacent to node1 and node2 and from the given type.EdgeGraph. getEdgeByStoreId(int storeId)Gets an edge given its store id.EdgeDirectedGraph. getMutualEdge(Edge edge)Gets the edge in the other direction of the given edge.EdgeGraphFactory. newEdge(Object id, Node source, Node target, int type, double weight, boolean directed)Creates and returns an edge between source and target.EdgeGraphFactory. newEdge(Node source, Node target)Creates and returns a directed edge between source and target.EdgeGraphFactory. newEdge(Node source, Node target, boolean directed)Creates and returns an edge between source and target.EdgeGraphFactory. newEdge(Node source, Node target, int type, boolean directed)Creates and returns an edge between source and target.EdgeGraphFactory. newEdge(Node source, Node target, int type, double weight, boolean directed)Creates and returns an edge between source and target.EdgeEdgeIterable.EdgeIterableEmpty. next()Edge[]EdgeIterable.EdgeIterableEmpty. toArray()Edge[]EdgeIterable. toArray()Returns the iterator content as an array.Methods in org.gephi.graph.api that return types with arguments of type Edge Modifier and Type Method Description Index<Edge>GraphModel. getEdgeIndex()Gets the edge index.Index<Edge>GraphModel. getEdgeIndex(GraphView view)Gets the edge index for the given graph view.TimeIndex<Edge>GraphModel. getEdgeTimeIndex()Gets the edge time index.TimeIndex<Edge>GraphModel. getEdgeTimeIndex(GraphView view)Gets the edge time index for the given view.Iterator<Edge>EdgeIterable.EdgeIterableEmpty. iterator()Iterator<Edge>EdgeIterable. iterator()Returns an edge iterator.Collection<Edge>EdgeIterable.EdgeIterableEmpty. toCollection()Collection<Edge>EdgeIterable. toCollection()Returns the iterator content as a collection.Set<Edge>EdgeIterable.EdgeIterableEmpty. toSet()Set<Edge>EdgeIterable. toSet()Returns the iterator content as a set.Methods in org.gephi.graph.api with parameters of type Edge Modifier and Type Method Description booleanGraph. addEdge(Edge edge)Adds an edge to this graph.booleanSubgraph. addEdge(Edge edge)Adds an edge to this subgraph.booleanGraph. contains(Edge edge)Returns true if edge is contained in this graph.EdgeDirectedGraph. getMutualEdge(Edge edge)Gets the edge in the other direction of the given edge.NodeGraph. getOpposite(Node node, Edge edge)Gets the node at the opposite end of the given edge.booleanGraph. isDirected(Edge edge)Returns true if the given edge is directed.booleanGraph. isIncident(Edge edge1, Edge edge2)Returns true if edge1 and edge2 are incident.booleanGraph. isIncident(Node node, Edge edge)Returns true if the node and the edge are incident.booleanGraph. isSelfLoop(Edge edge)Returns true if the given edge is a self-loop.booleanGraph. removeEdge(Edge edge)Removes an edge from this graph.booleanSubgraph. removeEdge(Edge edge)Removes an edge from this subgraph.Method parameters in org.gephi.graph.api with type arguments of type Edge Modifier and Type Method Description booleanGraph. addAllEdges(Collection<? extends Edge> edges)Adds all edges in the collection to this graph.booleanSubgraph. addAllEdges(Collection<? extends Edge> edges)Adds a collection of edges to this subgraph.booleanGraph. removeAllEdges(Collection<? extends Edge> edges)Removes all edges in the collection from this graph.booleanSubgraph. removeAllEdges(Collection<? extends Edge> edges)Removes a collection of edges from this subgraph.booleanGraph. retainEdges(Collection<? extends Edge> edges)Retains only edges in this graph that are contained in the specified collection.booleanSubgraph. retainEdges(Collection<? extends Edge> edges)Retains only edges in this subgraph that are contained in the specified collection.
-