Uses of Interface
edu.uci.ics.jung.graph.DirectedGraph
Packages that use DirectedGraph
Package
Description
Methods for calculating properties relating to network flows (such as max flow/min cut).
Specialized measures for graph properties.
Mechanisms for graph transformation.
Interfaces for the JUNG graph types, and some representative implementations.
Utility interfaces and classes for the JUNG API.
Sample applications created using JUNG, largely focused on visualization.
-
Uses of DirectedGraph in edu.uci.ics.jung.algorithms.flows
Fields in edu.uci.ics.jung.algorithms.flows declared as DirectedGraphModifier and TypeFieldDescriptionprivate DirectedGraph<V, E> EdmondsKarpMaxFlow.mFlowGraphprivate DirectedGraph<V, E> EdmondsKarpMaxFlow.mOriginalGraphMethods in edu.uci.ics.jung.algorithms.flows that return DirectedGraphConstructors in edu.uci.ics.jung.algorithms.flows with parameters of type DirectedGraphModifierConstructorDescriptionEdmondsKarpMaxFlow(DirectedGraph<V, E> directedGraph, V source, V sink, com.google.common.base.Function<E, Number> edgeCapacityTransformer, Map<E, Number> edgeFlowMap, com.google.common.base.Supplier<E> edgeFactory) Constructs a new instance of the algorithm solver for a given graph, source, and sink. -
Uses of DirectedGraph in edu.uci.ics.jung.algorithms.importance
Constructors in edu.uci.ics.jung.algorithms.importance with parameters of type DirectedGraphModifierConstructorDescriptionKStepMarkov(DirectedGraph<V, E> graph, Set<V> priors, int k, Map<E, Number> edgeWeights) Construct the algorihm instance and initializes the algorithm.WeightedNIPaths(DirectedGraph<V, E> graph, com.google.common.base.Supplier<V> vertexFactory, com.google.common.base.Supplier<E> edgeFactory, double alpha, int maxDepth, Set<V> priors) Constructs and initializes the algorithm. -
Uses of DirectedGraph in edu.uci.ics.jung.algorithms.metrics
Methods in edu.uci.ics.jung.algorithms.metrics with parameters of type DirectedGraphModifier and TypeMethodDescriptionstatic <V,E> long[] TriadicCensus.getCounts(DirectedGraph<V, E> g) Returns an array whose ith element (for i in [1,16]) is the number of occurrences of the corresponding triad type ing. -
Uses of DirectedGraph in edu.uci.ics.jung.algorithms.transformation
Method parameters in edu.uci.ics.jung.algorithms.transformation with type arguments of type DirectedGraphModifier and TypeMethodDescriptionstatic <V,E> Graph <V, E> DirectionTransformer.toDirected(Graph<V, E> graph, com.google.common.base.Supplier<DirectedGraph<V, E>> graph_factory, com.google.common.base.Supplier<E> edge_factory, boolean create_new) Transformsgraph(which may be of any directionality) into a directed graph. -
Uses of DirectedGraph in edu.uci.ics.jung.graph
Subinterfaces of DirectedGraph in edu.uci.ics.jung.graphModifier and TypeInterfaceDescriptioninterfaceForest<V,E> An interface for a graph which consists of a collection of rooted directed acyclic graphs.interfaceTree<V,E> A subtype ofGraphwhich is a (directed, rooted) tree.Classes in edu.uci.ics.jung.graph that implement DirectedGraphModifier and TypeClassDescriptionclassDelegateForest<V,E> An implementation ofForestthat delegates to a specifiedDirectedGraphinstance.classDelegateTree<V,E> An implementation ofTreethat delegates to a specified instance ofDirectedGraph.classAn implementation ofDirectedGraph, suitable for sparse graphs, that orders its vertex and edge collections according to insertion time.classDirectedSparseGraph<V,E> An implementation ofDirectedGraphsuitable for sparse graphs.classAn implementation ofDirectedGraph, suitable for sparse graphs, that permits parallel edges.classOrderedKAryTree<V,E> An implementation ofTreein which each vertex has ≤ k children.Methods in edu.uci.ics.jung.graph that return types with arguments of type DirectedGraphModifier and TypeMethodDescriptionstatic <V,E> com.google.common.base.Supplier <DirectedGraph<V, E>> DirectedOrderedSparseMultigraph.getFactory()static final <V,E> com.google.common.base.Supplier <DirectedGraph<V, E>> DirectedSparseGraph.getFactory()static <V,E> com.google.common.base.Supplier <DirectedGraph<V, E>> DirectedSparseMultigraph.getFactory()static <V,E> com.google.common.base.Supplier <DirectedGraph<V, E>> OrderedKAryTree.getFactory(int order) Constructors in edu.uci.ics.jung.graph with parameters of type DirectedGraphModifierConstructorDescriptionDelegateForest(DirectedGraph<V, E> delegate) Creates an instance backed by the inputDirectedGraph.DelegateTree(DirectedGraph<V, E> graph) Creates a newDelegateTreewhich delegates tograph.Constructor parameters in edu.uci.ics.jung.graph with type arguments of type DirectedGraphModifierConstructorDescriptionDelegateTree(com.google.common.base.Supplier<DirectedGraph<V, E>> graphFactory) create an instance with passed values. -
Uses of DirectedGraph in edu.uci.ics.jung.graph.util
Classes in edu.uci.ics.jung.graph.util that implement DirectedGraphModifier and TypeClassDescription(package private) static class(package private) static class(package private) static class(package private) static class(package private) static class(package private) static classMethods in edu.uci.ics.jung.graph.util that return DirectedGraphModifier and TypeMethodDescriptionstatic <V,E> DirectedGraph <V, E> Graphs.synchronizedDirectedGraph(DirectedGraph<V, E> graph) Returns a synchronized DirectedGraph backed by the passed DirectedGraph.static <V,E> DirectedGraph <V, E> Graphs.unmodifiableDirectedGraph(DirectedGraph<V, E> graph) Returns an unmodifiableDirectedGraphbacked by the passed graph.Methods in edu.uci.ics.jung.graph.util with parameters of type DirectedGraphModifier and TypeMethodDescriptionstatic <V,E> DirectedGraph <V, E> Graphs.synchronizedDirectedGraph(DirectedGraph<V, E> graph) Returns a synchronized DirectedGraph backed by the passed DirectedGraph.static <V,E> DirectedGraph <V, E> Graphs.unmodifiableDirectedGraph(DirectedGraph<V, E> graph) Returns an unmodifiableDirectedGraphbacked by the passed graph.Constructors in edu.uci.ics.jung.graph.util with parameters of type DirectedGraphModifierConstructorDescriptionprivateSynchronizedDirectedGraph(DirectedGraph<V, E> delegate) privateUnmodifiableDirectedGraph(DirectedGraph<V, E> delegate) -
Uses of DirectedGraph in edu.uci.ics.jung.samples
Fields in edu.uci.ics.jung.samples declared as DirectedGraphModifier and TypeFieldDescription(package private) DirectedGraph<Number, Number> ImageEdgeLabelDemo.graphthe graphFields in edu.uci.ics.jung.samples with type parameters of type DirectedGraphModifier and TypeFieldDescription(package private) com.google.common.base.Supplier<DirectedGraph<String, Integer>> BalloonLayoutDemo.graphFactory(package private) com.google.common.base.Supplier<DirectedGraph<String, Integer>> L2RTreeLayoutDemo.graphFactory(package private) com.google.common.base.Supplier<DirectedGraph<String, Integer>> RadialTreeLensDemo.graphFactory(package private) com.google.common.base.Supplier<DirectedGraph<String, Integer>> TreeCollapseDemo.graphFactory(package private) com.google.common.base.Supplier<DirectedGraph<String, Integer>> TreeLayoutDemo.graphFactory