Class Graphs.TransposedValueGraph<N,V>
- java.lang.Object
-
- com.google.common.graph.AbstractBaseGraph<N>
-
- com.google.common.graph.AbstractValueGraph<N,V>
-
- com.google.common.graph.ForwardingValueGraph<N,V>
-
- com.google.common.graph.Graphs.TransposedValueGraph<N,V>
-
- All Implemented Interfaces:
BaseGraph<N>,PredecessorsFunction<N>,SuccessorsFunction<N>,ValueGraph<N,V>
- Enclosing class:
- Graphs
private static class Graphs.TransposedValueGraph<N,V> extends ForwardingValueGraph<N,V>
-
-
Field Summary
Fields Modifier and Type Field Description private ValueGraph<N,V>graph
-
Constructor Summary
Constructors Constructor Description TransposedValueGraph(ValueGraph<N,V> graph)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected ValueGraph<N,V>delegate()java.util.Optional<V>edgeValue(EndpointPair<N> endpoints)Returns the value of the edge that connectsendpoints(in the order, if any, specified byendpoints), if one is present; otherwise, returnsOptional.empty().java.util.Optional<V>edgeValue(N nodeU, N nodeV)Returns the value of the edge that connectsnodeUtonodeV(in the order, if any, specified byendpoints), if one is present; otherwise, returnsOptional.empty().VedgeValueOrDefault(EndpointPair<N> endpoints, V defaultValue)Returns the value of the edge that connectsendpoints(in the order, if any, specified byendpoints), if one is present; otherwise, returnsdefaultValue.VedgeValueOrDefault(N nodeU, N nodeV, V defaultValue)Returns the value of the edge that connectsnodeUtonodeV, if one is present; otherwise, returnsdefaultValue.booleanhasEdgeConnecting(EndpointPair<N> endpoints)Returns true if there is an edge that directly connectsendpoints(in the order, if any, specified byendpoints).booleanhasEdgeConnecting(N nodeU, N nodeV)Returns true if there is an edge that directly connectsnodeUtonodeV.intinDegree(N node)Returns the count ofnode's incoming edges (equal topredecessors(node).size()) in a directed graph.intoutDegree(N node)Returns the count ofnode's outgoing edges (equal tosuccessors(node).size()) in a directed graph.java.util.Set<N>predecessors(N node)Returns all nodes in this graph adjacent tonodewhich can be reached by traversingnode's incoming edges against the direction (if any) of the edge.java.util.Set<N>successors(N node)Returns all nodes in this graph adjacent tonodewhich can be reached by traversingnode's outgoing edges in the direction (if any) of the edge.-
Methods inherited from class com.google.common.graph.ForwardingValueGraph
adjacentNodes, allowsSelfLoops, degree, edgeCount, incidentEdgeOrder, isDirected, nodeOrder, nodes
-
Methods inherited from class com.google.common.graph.AbstractValueGraph
asGraph, equals, hashCode, toString
-
Methods inherited from class com.google.common.graph.AbstractBaseGraph
edges, incidentEdges, isOrderingCompatible, validateEndpoints
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.google.common.graph.ValueGraph
edges, incidentEdges
-
-
-
-
Field Detail
-
graph
private final ValueGraph<N,V> graph
-
-
Constructor Detail
-
TransposedValueGraph
TransposedValueGraph(ValueGraph<N,V> graph)
-
-
Method Detail
-
delegate
protected ValueGraph<N,V> delegate()
- Specified by:
delegatein classForwardingValueGraph<N,V>
-
predecessors
public java.util.Set<N> predecessors(N node)
Description copied from interface:ValueGraphReturns all nodes in this graph adjacent tonodewhich can be reached by traversingnode's incoming edges against the direction (if any) of the edge.In an undirected graph, this is equivalent to
ValueGraph.adjacentNodes(Object).- Specified by:
predecessorsin interfaceBaseGraph<N>- Specified by:
predecessorsin interfacePredecessorsFunction<N>- Specified by:
predecessorsin interfaceValueGraph<N,V>- Overrides:
predecessorsin classForwardingValueGraph<N,V>
-
successors
public java.util.Set<N> successors(N node)
Description copied from interface:ValueGraphReturns all nodes in this graph adjacent tonodewhich can be reached by traversingnode's outgoing edges in the direction (if any) of the edge.In an undirected graph, this is equivalent to
ValueGraph.adjacentNodes(Object).This is not the same as "all nodes reachable from
nodeby following outgoing edges". For that functionality, seeGraphs.reachableNodes(Graph, Object).- Specified by:
successorsin interfaceBaseGraph<N>- Specified by:
successorsin interfaceSuccessorsFunction<N>- Specified by:
successorsin interfaceValueGraph<N,V>- Overrides:
successorsin classForwardingValueGraph<N,V>
-
inDegree
public int inDegree(N node)
Description copied from interface:BaseGraphReturns the count ofnode's incoming edges (equal topredecessors(node).size()) in a directed graph. In an undirected graph, returns theBaseGraph.degree(Object).If the count is greater than
Integer.MAX_VALUE, returnsInteger.MAX_VALUE.
-
outDegree
public int outDegree(N node)
Description copied from interface:BaseGraphReturns the count ofnode's outgoing edges (equal tosuccessors(node).size()) in a directed graph. In an undirected graph, returns theBaseGraph.degree(Object).If the count is greater than
Integer.MAX_VALUE, returnsInteger.MAX_VALUE.
-
hasEdgeConnecting
public boolean hasEdgeConnecting(N nodeU, N nodeV)
Description copied from interface:BaseGraphReturns true if there is an edge that directly connectsnodeUtonodeV. This is equivalent tonodes().contains(nodeU) && successors(nodeU).contains(nodeV).In an undirected graph, this is equal to
hasEdgeConnecting(nodeV, nodeU).- Specified by:
hasEdgeConnectingin interfaceBaseGraph<N>- Specified by:
hasEdgeConnectingin interfaceValueGraph<N,V>- Overrides:
hasEdgeConnectingin classForwardingValueGraph<N,V>
-
hasEdgeConnecting
public boolean hasEdgeConnecting(EndpointPair<N> endpoints)
Description copied from interface:BaseGraphReturns true if there is an edge that directly connectsendpoints(in the order, if any, specified byendpoints). This is equivalent toedges().contains(endpoints).Unlike the other
EndpointPair-accepting methods, this method does not throw if the endpoints are unordered; it simply returns false. This is for consistency with the behavior ofCollection#contains(Object)(which does not generally throw if the object cannot be present in the collection), and the desire to have this method's behavior be compatible withedges().contains(endpoints).- Specified by:
hasEdgeConnectingin interfaceBaseGraph<N>- Specified by:
hasEdgeConnectingin interfaceValueGraph<N,V>- Overrides:
hasEdgeConnectingin classForwardingValueGraph<N,V>
-
edgeValue
public java.util.Optional<V> edgeValue(N nodeU, N nodeV)
Description copied from interface:ValueGraphReturns the value of the edge that connectsnodeUtonodeV(in the order, if any, specified byendpoints), if one is present; otherwise, returnsOptional.empty().- Specified by:
edgeValuein interfaceValueGraph<N,V>- Overrides:
edgeValuein classForwardingValueGraph<N,V>
-
edgeValue
public java.util.Optional<V> edgeValue(EndpointPair<N> endpoints)
Description copied from interface:ValueGraphReturns the value of the edge that connectsendpoints(in the order, if any, specified byendpoints), if one is present; otherwise, returnsOptional.empty().If this graph is directed, the endpoints must be ordered.
- Specified by:
edgeValuein interfaceValueGraph<N,V>- Overrides:
edgeValuein classForwardingValueGraph<N,V>
-
edgeValueOrDefault
public V edgeValueOrDefault(N nodeU, N nodeV, V defaultValue)
Description copied from interface:ValueGraphReturns the value of the edge that connectsnodeUtonodeV, if one is present; otherwise, returnsdefaultValue.In an undirected graph, this is equal to
edgeValueOrDefault(nodeV, nodeU, defaultValue).- Specified by:
edgeValueOrDefaultin interfaceValueGraph<N,V>- Overrides:
edgeValueOrDefaultin classForwardingValueGraph<N,V>
-
edgeValueOrDefault
public V edgeValueOrDefault(EndpointPair<N> endpoints, V defaultValue)
Description copied from interface:ValueGraphReturns the value of the edge that connectsendpoints(in the order, if any, specified byendpoints), if one is present; otherwise, returnsdefaultValue.If this graph is directed, the endpoints must be ordered.
- Specified by:
edgeValueOrDefaultin interfaceValueGraph<N,V>- Overrides:
edgeValueOrDefaultin classForwardingValueGraph<N,V>
-
-