| Package | Description | 
|---|---|
| com.google.common.graph | An API for representing graph (node and edge) data. | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | MutableNetwork<N,E>A subinterface of  Networkwhich adds mutation methods. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | AbstractNetwork<N,E>This class provides a skeletal implementation of  Network. | 
| class  | ImmutableNetwork<N,E>A  Networkwhose elements and structural relationships will never change. | 
| Modifier and Type | Method and Description | 
|---|---|
| static <N,E> Network<N,E> | Graphs. transpose(Network<N,E> network)Returns a view of  networkwith the direction (if any) of every edge reversed. | 
| Modifier and Type | Method and Description | 
|---|---|
| static <N,E> MutableNetwork<N,E> | Graphs. copyOf(Network<N,E> network)Creates a mutable copy of  networkwith the same nodes and edges. | 
| static <N,E> ImmutableNetwork<N,E> | ImmutableNetwork. copyOf(Network<N,E> network)Returns an immutable copy of  network. | 
| static boolean | Graphs. equivalent(Network<?,?> networkA,
          Network<?,?> networkB)Deprecated. 
 Use  equals(Object)instead. This method will be removed in late
 2017. | 
| static boolean | Graphs. equivalent(Network<?,?> networkA,
          Network<?,?> networkB)Deprecated. 
 Use  equals(Object)instead. This method will be removed in late
 2017. | 
| static <N,E> NetworkBuilder<N,E> | NetworkBuilder. from(Network<N,E> network)Returns a  NetworkBuilderinitialized with all properties queryable fromnetwork. | 
| static boolean | Graphs. hasCycle(Network<?,?> network)Returns true if  networkhas at least one cycle. | 
| static <N,E> MutableNetwork<N,E> | Graphs. inducedSubgraph(Network<N,E> network,
               Iterable<? extends N> nodes)Returns the subgraph of  networkinduced bynodes. | 
| static <N,E> Network<N,E> | Graphs. transpose(Network<N,E> network)Returns a view of  networkwith the direction (if any) of every edge reversed. | 
Copyright © 2010–2017. All rights reserved.