Uses of Interface
com.google.javascript.jscomp.graph.DiGraph.DiGraphEdge
-
Packages that use DiGraph.DiGraphEdge Package Description com.google.javascript.jscomp.graph Provides graph data structures and algorithms for coloring and fixed-point computations. -
-
Uses of DiGraph.DiGraphEdge in com.google.javascript.jscomp.graph
Classes in com.google.javascript.jscomp.graph that implement DiGraph.DiGraphEdge 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 types with arguments of type DiGraph.DiGraphEdge Modifier and Type Method Description abstract java.util.List<? extends DiGraph.DiGraphEdge<N,E>>DiGraph. getEdges()abstract java.util.List<? extends DiGraph.DiGraphEdge<N,E>>DiGraph. getEdges(N n1, N n2)abstract java.util.List<? extends DiGraph.DiGraphEdge<N,E>>DiGraph. getEdgesInDirection(N n1, N n2)java.util.List<? extends DiGraph.DiGraphEdge<N,E>>DiGraph.DiGraphNode. getInEdges()abstract java.util.List<? extends DiGraph.DiGraphEdge<N,E>>DiGraph. getInEdges(N nodeValue)Gets an immutable list of in edges of the given node.java.util.List<? extends DiGraph.DiGraphEdge<N,E>>DiGraph.DiGraphNode. getOutEdges()abstract java.util.List<? extends DiGraph.DiGraphEdge<N,E>>DiGraph. getOutEdges(N nodeValue)Gets an immutable list of out edges of the given node.
-