Uses of Enum Class
org.jgrapht.opt.graph.sparse.IncomingEdgesSupport
Packages that use IncomingEdgesSupport
Package
Description
Specialized graph implementations using sparse matrix representations.
-
Uses of IncomingEdgesSupport in org.jgrapht.opt.graph.sparse
Subclasses with type arguments of type IncomingEdgesSupport in org.jgrapht.opt.graph.sparseModifier and TypeClassDescriptionenumEnumeration for different kind of incoming edges support.Methods in org.jgrapht.opt.graph.sparse that return IncomingEdgesSupportModifier and TypeMethodDescriptionstatic IncomingEdgesSupportReturns the enum constant of this class with the specified name.static IncomingEdgesSupport[]IncomingEdgesSupport.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in org.jgrapht.opt.graph.sparse with parameters of type IncomingEdgesSupportModifierConstructorDescriptionSparseIntDirectedGraph(int numVertices, int numEdges, Supplier<Stream<Pair<Integer, Integer>>> edges, IncomingEdgesSupport incomingEdgesSupport) Create a new graph from an edge stream.SparseIntDirectedGraph(int numVertices, List<Pair<Integer, Integer>> edges, IncomingEdgesSupport incomingEdgesSupport) Create a new graph from an edge list.SparseIntDirectedWeightedGraph(int numVertices, int numEdges, Supplier<Stream<Triple<Integer, Integer, Double>>> edges, IncomingEdgesSupport incomingEdgeSupport) Create a new graph from an edge stream.SparseIntDirectedWeightedGraph(int numVertices, List<Triple<Integer, Integer, Double>> edges, IncomingEdgesSupport incomingEdgeSupport) Create a new graph from an edge list.