Uses of Interface
com.google.javascript.jscomp.graph.Graph.GraphEdge
-
Packages that use Graph.GraphEdge Package Description com.google.javascript.jscomp.graph Provides graph data structures and algorithms for coloring and fixed-point computations. -
-
Uses of Graph.GraphEdge in com.google.javascript.jscomp.graph
Subinterfaces of Graph.GraphEdge in com.google.javascript.jscomp.graph Modifier and Type Interface Description static interfaceDiGraph.DiGraphEdge<N,E>A generic directed graph edge.static interfaceUndiGraph.UndiGraphEdge<N,E>A generic undirected graph edge.Classes in com.google.javascript.jscomp.graph that implement Graph.GraphEdge Modifier and Type Class Description static classLinkedDirectedGraph.LinkedDiGraphEdge<N,E>A directed graph edge that stores the source and destination nodes at each edge.Methods in com.google.javascript.jscomp.graph that return Graph.GraphEdge Modifier and Type Method Description abstract Graph.GraphEdge<N,E>Graph. getFirstEdge(N n1, N n2)Retrieves any edge from the graph.Graph.GraphEdge<N,E>LinkedDirectedGraph. getFirstEdge(N n1, N n2)Graph.GraphEdge<N,E>LinkedUndirectedGraph. getFirstEdge(N n1, N n2)Methods in com.google.javascript.jscomp.graph that return types with arguments of type Graph.GraphEdge Modifier and Type Method Description abstract java.util.List<? extends Graph.GraphEdge<N,E>>Graph. getEdges()Gets an immutable list of all edges.abstract java.util.List<? extends Graph.GraphEdge<N,E>>Graph. getEdges(N n1, N n2)Retrieves an edge from the graph.java.util.List<Graph.GraphEdge<N,E>>LinkedUndirectedGraph. getEdges()java.util.List<Graph.GraphEdge<N,E>>LinkedUndirectedGraph. getEdges(N n1, N n2)
-