Tabnine Logo
BaseGraph.nodes
Code IndexAdd Tabnine to your IDE (free)

How to use
nodes
method
in
com.google.common.graph.BaseGraph

Best Java code snippets using com.google.common.graph.BaseGraph.nodes (Showing top 15 results out of 315)

origin: google/guava

private EndpointPairIterator(BaseGraph<N> graph) {
 this.graph = graph;
 this.nodeIterator = graph.nodes().iterator();
}
origin: google/guava

private Undirected(BaseGraph<N> graph) {
 super(graph);
 this.visitedNodes = Sets.newHashSetWithExpectedSize(graph.nodes().size());
}
origin: google/j2objc

private EndpointPairIterator(BaseGraph<N> graph) {
 this.graph = graph;
 this.nodeIterator = graph.nodes().iterator();
}
origin: google/guava

@Override
public Set<N> nodes() {
 return delegate().nodes();
}
origin: wildfly/wildfly

private EndpointPairIterator(BaseGraph<N> graph) {
 this.graph = graph;
 this.nodeIterator = graph.nodes().iterator();
}
origin: google/j2objc

private Undirected(BaseGraph<N> graph) {
 super(graph);
 this.visitedNodes = Sets.newHashSetWithExpectedSize(graph.nodes().size());
}
origin: wildfly/wildfly

private Undirected(BaseGraph<N> graph) {
 super(graph);
 this.visitedNodes = Sets.newHashSetWithExpectedSize(graph.nodes().size());
}
origin: google/j2objc

@Override
public Set<N> nodes() {
 return delegate().nodes();
}
origin: wildfly/wildfly

@Override
public Set<N> nodes() {
 return delegate().nodes();
}
origin: org.jboss.eap/wildfly-client-all

private EndpointPairIterator(BaseGraph<N> graph) {
 this.graph = graph;
 this.nodeIterator = graph.nodes().iterator();
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

private EndpointPairIterator(BaseGraph<N> graph) {
 this.graph = graph;
 this.nodeIterator = graph.nodes().iterator();
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

private Undirected(BaseGraph<N> graph) {
 super(graph);
 this.visitedNodes = Sets.newHashSetWithExpectedSize(graph.nodes().size());
}
origin: org.jboss.eap/wildfly-client-all

private Undirected(BaseGraph<N> graph) {
 super(graph);
 this.visitedNodes = Sets.newHashSetWithExpectedSize(graph.nodes().size());
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
public Set<N> nodes() {
 return delegate().nodes();
}
origin: org.jboss.eap/wildfly-client-all

@Override
public Set<N> nodes() {
 return delegate().nodes();
}
com.google.common.graphBaseGraphnodes

Javadoc

Returns all nodes in this graph, in the order specified by #nodeOrder().

Popular methods of BaseGraph

  • adjacentNodes
    Returns the nodes which have an incident edge in common with node in this graph.
  • allowsSelfLoops
    Returns true if this graph allows self-loops (edges that connect a node to itself). Attempting to ad
  • degree
    Returns the count of node's incident edges, counting self-loops twice (equivalently, the number of t
  • edges
    Returns all edges in this graph.
  • hasEdgeConnecting
    Returns true if there is an edge directly connecting nodeU to nodeV. This is equivalent to nodes().c
  • inDegree
    Returns the count of node's incoming edges (equal to predecessors(node).size()) in a directed graph.
  • isDirected
    Returns true if the edges in this graph are directed. Directed edges connect a EndpointPair#source()
  • nodeOrder
    Returns the order of iteration for the elements of #nodes().
  • outDegree
    Returns the count of node's outgoing edges (equal to successors(node).size()) in a directed graph. I
  • predecessors
  • successors
  • successors

Popular in Java

  • Updating database using SQL prepared statement
  • setContentView (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getApplicationContext (Context)
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JOptionPane (javax.swing)
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now