Uses of Interface
org.jgrapht.GraphIterables
-
Packages that use GraphIterables Package Description org.jgrapht The front-end API's interfaces and classes, includingGraph
.org.jgrapht.graph Implementations of various graphs.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 GraphIterables in org.jgrapht
Methods in org.jgrapht that return GraphIterables Modifier and Type Method Description default GraphIterables<V,E>
Graph. iterables()
Access the graph using theGraphIterables
interface. -
Uses of GraphIterables in org.jgrapht.graph
Classes in org.jgrapht.graph that implement GraphIterables Modifier and Type Class Description class
DefaultGraphIterables<V,E>
The default implementation of the graph iterables which simply delegates to the set implementations.Fields in org.jgrapht.graph declared as GraphIterables Modifier and Type Field Description private GraphIterables<V,E>
AbstractBaseGraph. graphIterables
Methods in org.jgrapht.graph that return GraphIterables Modifier and Type Method Description GraphIterables<V,E>
AbstractBaseGraph. iterables()
-
Uses of GraphIterables in org.jgrapht.sux4j
Classes in org.jgrapht.sux4j that implement GraphIterables Modifier and Type Class Description private static class
SuccinctDirectedGraph.SuccinctGraphIterables
private static class
SuccinctIntDirectedGraph.SuccinctGraphIterables
private static class
SuccinctIntUndirectedGraph.SuccinctGraphIterables
private static class
SuccinctUndirectedGraph.SuccinctGraphIterables
Fields in org.jgrapht.sux4j declared as GraphIterables Modifier and Type Field Description private GraphIterables<java.lang.Integer,it.unimi.dsi.fastutil.ints.IntIntPair>
SuccinctDirectedGraph. iterables
private GraphIterables<java.lang.Integer,java.lang.Integer>
SuccinctIntDirectedGraph. iterables
Methods in org.jgrapht.sux4j that return GraphIterables Modifier and Type Method Description GraphIterables<java.lang.Integer,it.unimi.dsi.fastutil.ints.IntIntPair>
SuccinctDirectedGraph. iterables()
GraphIterables<java.lang.Integer,java.lang.Integer>
SuccinctIntDirectedGraph. iterables()
GraphIterables<java.lang.Integer,java.lang.Integer>
SuccinctIntUndirectedGraph. iterables()
GraphIterables<java.lang.Integer,it.unimi.dsi.fastutil.ints.IntIntSortedPair>
SuccinctUndirectedGraph. iterables()
-
Uses of GraphIterables in org.jgrapht.webgraph
Fields in org.jgrapht.webgraph declared as GraphIterables Modifier and Type Field Description private GraphIterables<java.lang.Long,it.unimi.dsi.fastutil.longs.LongLongPair>
ImmutableDirectedBigGraphAdapter. iterables
private GraphIterables<java.lang.Integer,it.unimi.dsi.fastutil.ints.IntIntPair>
ImmutableDirectedGraphAdapter. iterables
private GraphIterables<java.lang.Long,it.unimi.dsi.fastutil.longs.LongLongSortedPair>
ImmutableUndirectedBigGraphAdapter. iterables
private GraphIterables<java.lang.Integer,it.unimi.dsi.fastutil.ints.IntIntSortedPair>
ImmutableUndirectedGraphAdapter. iterables
Methods in org.jgrapht.webgraph that return GraphIterables Modifier and Type Method Description GraphIterables<java.lang.Long,it.unimi.dsi.fastutil.longs.LongLongPair>
ImmutableDirectedBigGraphAdapter. iterables()
GraphIterables<java.lang.Integer,it.unimi.dsi.fastutil.ints.IntIntPair>
ImmutableDirectedGraphAdapter. iterables()
GraphIterables<java.lang.Long,it.unimi.dsi.fastutil.longs.LongLongSortedPair>
ImmutableUndirectedBigGraphAdapter. iterables()
GraphIterables<java.lang.Integer,it.unimi.dsi.fastutil.ints.IntIntSortedPair>
ImmutableUndirectedGraphAdapter. iterables()
-