Uses of Interface
org.jgrapht.GraphType
- 
Packages that use GraphType Package Description org.jgrapht The front-end API's interfaces and classes, includingGraph.org.jgrapht.graph Implementations of various graphs.org.jgrapht.graph.builder Various builder for graphs.org.jgrapht.graph.guava org.jgrapht.opt.graph.fastutil Specialized graph implementations using the FastUtil libraryorg.jgrapht.opt.graph.sparse A specialized graph implementation using a sparse matrix representations.
- 
- 
Uses of GraphType in org.jgraphtMethods in org.jgrapht that return GraphType Modifier and Type Method Description GraphTypeGraphType. asDirected()Create a directed variant of the current graph type.GraphTypeGraphType. asMixed()Create a mixed variant of the current graph type.GraphTypeGraphType. asModifiable()Create a modifiable variant of the current graph type.GraphTypeGraphType. asUndirected()Create an undirected variant of the current graph type.GraphTypeGraphType. asUnmodifiable()Create an unmodifiable variant of the current graph type.GraphTypeGraphType. asUnweighted()Create an unweighted variant of the current graph type.GraphTypeGraphType. asWeighted()Create a weighted variant of the current graph type.GraphTypeGraph. getType()Get the graph type.
- 
Uses of GraphType in org.jgrapht.graphClasses in org.jgrapht.graph that implement GraphType Modifier and Type Class Description classDefaultGraphTypeDefault implementation of the graph type.Fields in org.jgrapht.graph declared as GraphType Modifier and Type Field Description protected GraphTypeAsSubgraph. baseTypeprotected GraphTypeMaskSubgraph. baseTypeMethods in org.jgrapht.graph that return GraphType Modifier and Type Method Description GraphTypeDefaultGraphType. asDirected()GraphTypeDefaultGraphType. asMixed()GraphTypeDefaultGraphType. asModifiable()GraphTypeDefaultGraphType. asUndirected()GraphTypeDefaultGraphType. asUnmodifiable()GraphTypeDefaultGraphType. asUnweighted()GraphTypeDefaultGraphType. asWeighted()GraphTypeAbstractBaseGraph. getType()Get the graph type.GraphTypeAsGraphUnion. getType()Get the graph type.GraphTypeAsSubgraph. getType()Get the graph type.GraphTypeAsUndirectedGraph. getType()Get the graph type.GraphTypeAsUnmodifiableGraph. getType()Get the graph type.GraphTypeAsUnweightedGraph. getType()GraphTypeAsWeightedGraph. getType()GraphTypeGraphDelegator. getType()Get the graph type.GraphTypeMaskSubgraph. getType()Get the graph type.Methods in org.jgrapht.graph that return types with arguments of type GraphType Modifier and Type Method Description Function<GraphType,IntrusiveEdgesSpecifics<V,E>>DefaultGraphSpecificsStrategy. getIntrusiveEdgesSpecificsFactory()Function<GraphType,IntrusiveEdgesSpecifics<V,E>>FastLookupGraphSpecificsStrategy. getIntrusiveEdgesSpecificsFactory()Function<GraphType,IntrusiveEdgesSpecifics<V,E>>GraphSpecificsStrategy. getIntrusiveEdgesSpecificsFactory()Get a function which creates the intrusive edges specifics.BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>DefaultGraphSpecificsStrategy. getSpecificsFactory()BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>FastLookupGraphSpecificsStrategy. getSpecificsFactory()BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>GraphSpecificsStrategy. getSpecificsFactory()Get a function which creates the specifics.Constructors in org.jgrapht.graph with parameters of type GraphType Constructor Description AbstractBaseGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, GraphType type)Construct a new graph.AbstractBaseGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, GraphType type, GraphSpecificsStrategy<V,E> graphSpecificsStrategy)Construct a new graph.Builder(GraphType type)Construct a new Builder.
- 
Uses of GraphType in org.jgrapht.graph.builderMethods in org.jgrapht.graph.builder that return GraphType Modifier and Type Method Description GraphTypeGraphTypeBuilder. buildType()Build the graph type.Methods in org.jgrapht.graph.builder with parameters of type GraphType Modifier and Type Method Description static <V,E>
 GraphTypeBuilder<V,E>GraphTypeBuilder. forGraphType(GraphType type)Create a graph type builder which will create a graph with the same type as the one provided.
- 
Uses of GraphType in org.jgrapht.graph.guavaMethods in org.jgrapht.graph.guava that return GraphType Modifier and Type Method Description GraphTypeBaseGraphAdapter. getType()GraphTypeBaseNetworkAdapter. getType()GraphTypeBaseValueGraphAdapter. getType()GraphTypeImmutableGraphAdapter. getType()GraphTypeImmutableNetworkAdapter. getType()GraphTypeImmutableValueGraphAdapter. getType()
- 
Uses of GraphType in org.jgrapht.opt.graph.fastutilMethods in org.jgrapht.opt.graph.fastutil that return types with arguments of type GraphType Modifier and Type Method Description Function<GraphType,IntrusiveEdgesSpecifics<V,E>>FastutilFastLookupGSS. getIntrusiveEdgesSpecificsFactory()Function<GraphType,IntrusiveEdgesSpecifics<Integer,E>>FastutilFastLookupIntVertexGSS. getIntrusiveEdgesSpecificsFactory()Function<GraphType,IntrusiveEdgesSpecifics<V,E>>FastutilGSS. getIntrusiveEdgesSpecificsFactory()Function<GraphType,IntrusiveEdgesSpecifics<Integer,E>>FastutilIntVertexGSS. getIntrusiveEdgesSpecificsFactory()BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>FastutilFastLookupGSS. getSpecificsFactory()BiFunction<Graph<Integer,E>,GraphType,Specifics<Integer,E>>FastutilFastLookupIntVertexGSS. getSpecificsFactory()BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>FastutilGSS. getSpecificsFactory()BiFunction<Graph<Integer,E>,GraphType,Specifics<Integer,E>>FastutilIntVertexGSS. getSpecificsFactory()Constructors in org.jgrapht.opt.graph.fastutil with parameters of type GraphType Constructor Description FastutilMapGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, GraphType type)Construct a new graph.FastutilMapGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, GraphType type, boolean fastLookups)Construct a new graph.FastutilMapIntVertexGraph(Supplier<Integer> vertexSupplier, Supplier<E> edgeSupplier, GraphType type)Construct a new graph.FastutilMapIntVertexGraph(Supplier<Integer> vertexSupplier, Supplier<E> edgeSupplier, GraphType type, boolean fastLookups)Construct a new graph.
- 
Uses of GraphType in org.jgrapht.opt.graph.sparseMethods in org.jgrapht.opt.graph.sparse that return GraphType Modifier and Type Method Description GraphTypeSparseIntDirectedGraph. getType()GraphTypeSparseIntDirectedWeightedGraph. getType()GraphTypeSparseIntUndirectedGraph. getType()GraphTypeSparseIntUndirectedWeightedGraph. getType()
 
-