Class Graphs.NodeAndRemainingSuccessors<N>

java.lang.Object
com.google.common.graph.Graphs.NodeAndRemainingSuccessors<N>
Enclosing class:
Graphs

private static final class Graphs.NodeAndRemainingSuccessors<N> extends Object
  • Field Details

    • node

      final N node
    • remainingSuccessors

      @CheckForNull Queue<N> remainingSuccessors
      The successors left to be visited, or null if we just added this NodeAndRemainingSuccessors instance to the stack. In the latter case, we'll compute the successors if we determine that we need them after we've performed the initial processing of the node.
  • Constructor Details

    • NodeAndRemainingSuccessors

      NodeAndRemainingSuccessors(N node)