Uses of Interface
org.jgrapht.GraphType
Packages that use GraphType
Package
Description
The front-end API's interfaces and classes, including
Graph.Implementations of various graphs.
Various builder for graphs.
-
Uses of GraphType in org.jgrapht
Methods in org.jgrapht that return GraphTypeModifier and TypeMethodDescriptionGraphType.asDirected()Create a directed variant of the current graph type.GraphType.asMixed()Create a mixed variant of the current graph type.GraphType.asModifiable()Create a modifiable variant of the current graph type.GraphType.asUndirected()Create an undirected variant of the current graph type.GraphType.asUnmodifiable()Create an unmodifiable variant of the current graph type.GraphType.asUnweighted()Create an unweighted variant of the current graph type.GraphType.asWeighted()Create a weighted variant of the current graph type.Graph.getType()Get the graph type. -
Uses of GraphType in org.jgrapht.graph
Classes in org.jgrapht.graph that implement GraphTypeModifier and TypeClassDescriptionclassDefault implementation of the graph type.Fields in org.jgrapht.graph declared as GraphTypeModifier and TypeFieldDescriptionprotected final GraphTypeAsSubgraph.baseTypeprotected final GraphTypeMaskSubgraph.baseTypeMethods in org.jgrapht.graph that return GraphTypeModifier and TypeMethodDescriptionDefaultGraphType.asDirected()DefaultGraphType.asMixed()DefaultGraphType.asModifiable()DefaultGraphType.asUndirected()DefaultGraphType.asUnmodifiable()DefaultGraphType.asUnweighted()DefaultGraphType.asWeighted()AbstractBaseGraph.getType()Get the graph type.AsGraphUnion.getType()AsSubgraph.getType()Get the graph type.AsUndirectedGraph.getType()Get the graph type.AsUnmodifiableGraph.getType()Get the graph type.AsUnweightedGraph.getType()AsWeightedGraph.getType()GraphDelegator.getType()Get the graph type.MaskSubgraph.getType()Get the graph type.Methods in org.jgrapht.graph that return types with arguments of type GraphTypeModifier and TypeMethodDescriptionDefaultGraphSpecificsStrategy.getIntrusiveEdgesSpecificsFactory()FastLookupGraphSpecificsStrategy.getIntrusiveEdgesSpecificsFactory()GraphSpecificsStrategy.getIntrusiveEdgesSpecificsFactory()Get a function which creates the intrusive edges specifics.DefaultGraphSpecificsStrategy.getSpecificsFactory()FastLookupGraphSpecificsStrategy.getSpecificsFactory()GraphSpecificsStrategy.getSpecificsFactory()Get a function which creates the specifics.Constructors in org.jgrapht.graph with parameters of type GraphTypeModifierConstructorDescriptionprotectedConstruct a new graph.protectedAbstractBaseGraph(Supplier<V> vertexSupplier, Supplier<E> edgeSupplier, GraphType type, GraphSpecificsStrategy<V, E> graphSpecificsStrategy) Construct a new graph.Construct a new Builder. -
Uses of GraphType in org.jgrapht.graph.builder
Methods in org.jgrapht.graph.builder that return GraphTypeMethods in org.jgrapht.graph.builder with parameters of type GraphTypeModifier and TypeMethodDescriptionstatic <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.