Tabnine Logo
ConfigurableNetwork.checkedConnections
Code IndexAdd Tabnine to your IDE (free)

How to use
checkedConnections
method
in
com.google.common.graph.ConfigurableNetwork

Best Java code snippets using com.google.common.graph.ConfigurableNetwork.checkedConnections (Showing top 20 results out of 315)

origin: google/guava

@Override
public Set<E> outEdges(N node) {
 return checkedConnections(node).outEdges();
}
origin: google/guava

@Override
public Set<E> incidentEdges(N node) {
 return checkedConnections(node).incidentEdges();
}
origin: google/guava

@Override
public Set<N> predecessors(N node) {
 return checkedConnections(node).predecessors();
}
origin: google/guava

@Override
public Set<E> inEdges(N node) {
 return checkedConnections(node).inEdges();
}
origin: google/guava

@Override
public Set<N> successors(N node) {
 return checkedConnections(node).successors();
}
origin: google/guava

@Override
public Set<N> adjacentNodes(N node) {
 return checkedConnections(node).adjacentNodes();
}
origin: google/guava

@Override
public Set<E> edgesConnecting(N nodeU, N nodeV) {
 NetworkConnections<N, E> connectionsU = checkedConnections(nodeU);
 if (!allowsSelfLoops && nodeU == nodeV) { // just an optimization, only check reference equality
  return ImmutableSet.of();
 }
 checkArgument(containsNode(nodeV), NODE_NOT_IN_GRAPH, nodeV);
 return connectionsU.edgesConnecting(nodeV);
}
origin: google/j2objc

@Override
public Set<E> outEdges(N node) {
 return checkedConnections(node).outEdges();
}
origin: google/j2objc

@Override
public Set<N> successors(N node) {
 return checkedConnections(node).successors();
}
origin: google/j2objc

@Override
public Set<E> incidentEdges(N node) {
 return checkedConnections(node).incidentEdges();
}
origin: google/j2objc

@Override
public Set<N> adjacentNodes(N node) {
 return checkedConnections(node).adjacentNodes();
}
origin: google/j2objc

@Override
public Set<E> inEdges(N node) {
 return checkedConnections(node).inEdges();
}
origin: google/j2objc

@Override
public Set<N> predecessors(N node) {
 return checkedConnections(node).predecessors();
}
origin: wildfly/wildfly

@Override
public Set<N> adjacentNodes(N node) {
 return checkedConnections(node).adjacentNodes();
}
origin: wildfly/wildfly

@Override
public Set<E> inEdges(N node) {
 return checkedConnections(node).inEdges();
}
origin: google/j2objc

@Override
public Set<E> edgesConnecting(N nodeU, N nodeV) {
 NetworkConnections<N, E> connectionsU = checkedConnections(nodeU);
 if (!allowsSelfLoops && nodeU == nodeV) { // just an optimization, only check reference equality
  return ImmutableSet.of();
 }
 checkArgument(containsNode(nodeV), NODE_NOT_IN_GRAPH, nodeV);
 return connectionsU.edgesConnecting(nodeV);
}
origin: wildfly/wildfly

@Override
public Set<E> outEdges(N node) {
 return checkedConnections(node).outEdges();
}
origin: wildfly/wildfly

@Override
public Set<N> predecessors(N node) {
 return checkedConnections(node).predecessors();
}
origin: wildfly/wildfly

@Override
public Set<N> successors(N node) {
 return checkedConnections(node).successors();
}
origin: wildfly/wildfly

@Override
public Set<E> edgesConnecting(N nodeU, N nodeV) {
 NetworkConnections<N, E> connectionsU = checkedConnections(nodeU);
 if (!allowsSelfLoops && nodeU == nodeV) { // just an optimization, only check reference equality
  return ImmutableSet.of();
 }
 checkArgument(containsNode(nodeV), NODE_NOT_IN_GRAPH, nodeV);
 return connectionsU.edgesConnecting(nodeV);
}
com.google.common.graphConfigurableNetworkcheckedConnections

Popular methods of ConfigurableNetwork

  • asGraph
  • checkedReferenceNode
  • containsNode

Popular in Java

  • Updating database using SQL prepared statement
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getApplicationContext (Context)
  • onCreateOptionsMenu (Activity)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Menu (java.awt)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Reference (javax.naming)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • Top 12 Jupyter Notebook extensions
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