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.nio.csv CSV importers/exportersorg.jgrapht.nio.gml GML importers/exportersorg.jgrapht.nio.json Json importers/exportersorg.jgrapht.opt.graph.fastutil Specialized graph implementations using the FastUtil libraryorg.jgrapht.opt.graph.sparse Specialized graph implementations using sparse matrix representations.org.jgrapht.opt.graph.sparse.specifics Implementations of different sparse graphs with different tradeoffs.org.jgrapht.sux4j Immutable graphs stored using Sux4J's quasi-succinct data structures.org.jgrapht.webgraph Adapters for graphs stored using WebGraph's compressed and succinct formats. -
-
Uses of GraphType in org.jgrapht
Methods in org.jgrapht that return GraphType Modifier and Type Method Description GraphType
GraphType. asDirected()
Create a directed variant of the current graph type.GraphType
GraphType. asMixed()
Create a mixed variant of the current graph type.GraphType
GraphType. asModifiable()
Create a modifiable variant of the current graph type.GraphType
GraphType. asUndirected()
Create an undirected variant of the current graph type.GraphType
GraphType. asUnmodifiable()
Create an unmodifiable variant of the current graph type.GraphType
GraphType. asUnweighted()
Create an unweighted variant of the current graph type.GraphType
GraphType. asWeighted()
Create a weighted variant of the current graph type.GraphType
Graph. getType()
Get the graph type. -
Uses of GraphType in org.jgrapht.graph
Classes in org.jgrapht.graph that implement GraphType Modifier and Type Class Description class
DefaultGraphType
Default implementation of the graph type.Fields in org.jgrapht.graph declared as GraphType Modifier and Type Field Description protected GraphType
AsSubgraph. baseType
protected GraphType
MaskSubgraph. baseType
private GraphType
AbstractBaseGraph. type
private GraphType
AsGraphUnion. type
private GraphType
AsGraphUnion. type1
private GraphType
AsGraphUnion. type2
Methods in org.jgrapht.graph that return GraphType Modifier and Type Method Description GraphType
DefaultGraphType. asDirected()
GraphType
DefaultGraphType. asMixed()
GraphType
DefaultGraphType. asModifiable()
GraphType
DefaultGraphType. asUndirected()
GraphType
DefaultGraphType. asUnmodifiable()
GraphType
DefaultGraphType. asUnweighted()
GraphType
DefaultGraphType. asWeighted()
GraphType
AbstractBaseGraph. getType()
Get the graph type.GraphType
AsGraphUnion. getType()
Get the graph type.GraphType
AsSubgraph. getType()
Get the graph type.GraphType
AsUndirectedGraph. getType()
Get the graph type.GraphType
AsUnmodifiableGraph. getType()
Get the graph type.GraphType
AsUnweightedGraph. getType()
GraphType
AsWeightedGraph. getType()
GraphType
GraphDelegator. getType()
Get the graph type.GraphType
MaskSubgraph. getType()
Get the graph type.Methods in org.jgrapht.graph that return types with arguments of type GraphType Modifier and Type Method Description java.util.function.Function<GraphType,IntrusiveEdgesSpecifics<V,E>>
DefaultGraphSpecificsStrategy. getIntrusiveEdgesSpecificsFactory()
java.util.function.Function<GraphType,IntrusiveEdgesSpecifics<V,E>>
FastLookupGraphSpecificsStrategy. getIntrusiveEdgesSpecificsFactory()
java.util.function.Function<GraphType,IntrusiveEdgesSpecifics<V,E>>
GraphSpecificsStrategy. getIntrusiveEdgesSpecificsFactory()
Get a function which creates the intrusive edges specifics.java.util.function.BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>
DefaultGraphSpecificsStrategy. getSpecificsFactory()
java.util.function.BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>
FastLookupGraphSpecificsStrategy. getSpecificsFactory()
java.util.function.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(java.util.function.Supplier<V> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, GraphType type)
Construct a new graph.AbstractBaseGraph(java.util.function.Supplier<V> vertexSupplier, java.util.function.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.builder
Methods in org.jgrapht.graph.builder that return GraphType Modifier and Type Method Description GraphType
GraphTypeBuilder. 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.guava
Methods in org.jgrapht.graph.guava that return GraphType Modifier and Type Method Description GraphType
BaseGraphAdapter. getType()
GraphType
BaseNetworkAdapter. getType()
GraphType
BaseValueGraphAdapter. getType()
GraphType
ImmutableGraphAdapter. getType()
GraphType
ImmutableNetworkAdapter. getType()
GraphType
ImmutableValueGraphAdapter. getType()
-
Uses of GraphType in org.jgrapht.nio.csv
Fields in org.jgrapht.nio.csv declared as GraphType Modifier and Type Field Description private GraphType
CSVImporter.Consumers. graphType
-
Uses of GraphType in org.jgrapht.nio.gml
Fields in org.jgrapht.nio.gml declared as GraphType Modifier and Type Field Description private GraphType
GmlImporter.Consumers. graphType
-
Uses of GraphType in org.jgrapht.nio.json
Fields in org.jgrapht.nio.json declared as GraphType Modifier and Type Field Description private GraphType
JSONImporter.Consumers. graphType
-
Uses of GraphType in org.jgrapht.opt.graph.fastutil
Methods in org.jgrapht.opt.graph.fastutil that return types with arguments of type GraphType Modifier and Type Method Description java.util.function.Function<GraphType,IntrusiveEdgesSpecifics<V,E>>
FastutilFastLookupGSS. getIntrusiveEdgesSpecificsFactory()
java.util.function.Function<GraphType,IntrusiveEdgesSpecifics<java.lang.Integer,E>>
FastutilFastLookupIntVertexGSS. getIntrusiveEdgesSpecificsFactory()
java.util.function.Function<GraphType,IntrusiveEdgesSpecifics<V,E>>
FastutilGSS. getIntrusiveEdgesSpecificsFactory()
java.util.function.Function<GraphType,IntrusiveEdgesSpecifics<java.lang.Integer,E>>
FastutilIntVertexGSS. getIntrusiveEdgesSpecificsFactory()
java.util.function.BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>
FastutilFastLookupGSS. getSpecificsFactory()
java.util.function.BiFunction<Graph<java.lang.Integer,E>,GraphType,Specifics<java.lang.Integer,E>>
FastutilFastLookupIntVertexGSS. getSpecificsFactory()
java.util.function.BiFunction<Graph<V,E>,GraphType,Specifics<V,E>>
FastutilGSS. getSpecificsFactory()
java.util.function.BiFunction<Graph<java.lang.Integer,E>,GraphType,Specifics<java.lang.Integer,E>>
FastutilIntVertexGSS. getSpecificsFactory()
Constructors in org.jgrapht.opt.graph.fastutil with parameters of type GraphType Constructor Description FastutilMapGraph(java.util.function.Supplier<V> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, GraphType type)
Construct a new graph.FastutilMapGraph(java.util.function.Supplier<V> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, GraphType type, boolean fastLookups)
Construct a new graph.FastutilMapIntVertexGraph(java.util.function.Supplier<java.lang.Integer> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, GraphType type)
Construct a new graph.FastutilMapIntVertexGraph(java.util.function.Supplier<java.lang.Integer> vertexSupplier, java.util.function.Supplier<E> edgeSupplier, GraphType type, boolean fastLookups)
Construct a new graph. -
Uses of GraphType in org.jgrapht.opt.graph.sparse
Methods in org.jgrapht.opt.graph.sparse that return GraphType Modifier and Type Method Description GraphType
SparseIntDirectedWeightedGraph. getType()
GraphType
SparseIntUndirectedWeightedGraph. getType()
-
Uses of GraphType in org.jgrapht.opt.graph.sparse.specifics
Methods in org.jgrapht.opt.graph.sparse.specifics that return GraphType Modifier and Type Method Description GraphType
AbstractSparseSpecificsGraph. getType()
GraphType
IncidenceMatrixSparseUndirectedSpecifics. getType()
GraphType
NoIncomingNoReindexSparseDirectedSpecifics. getType()
GraphType
SparseGraphSpecifics. getType()
Get the graph type. -
Uses of GraphType in org.jgrapht.sux4j
Methods in org.jgrapht.sux4j that return GraphType Modifier and Type Method Description GraphType
AbstractSuccinctDirectedGraph. getType()
GraphType
AbstractSuccinctUndirectedGraph. getType()
-
Uses of GraphType in org.jgrapht.webgraph
Methods in org.jgrapht.webgraph that return GraphType Modifier and Type Method Description GraphType
ImmutableDirectedBigGraphAdapter. getType()
GraphType
ImmutableDirectedGraphAdapter. getType()
GraphType
ImmutableUndirectedBigGraphAdapter. getType()
GraphType
ImmutableUndirectedGraphAdapter. getType()
-