congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
EdgesConnecting
Code IndexAdd Tabnine to your IDE (free)

How to use
EdgesConnecting
in
com.google.common.graph

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

origin: google/guava

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) outEdgeMap).inverse(), node);
 }
}
origin: google/guava

@Override
public int size() {
 return getConnectingEdge() == null ? 0 : 1;
}
origin: google/j2objc

@Override
public int size() {
 return getConnectingEdge() == null ? 0 : 1;
}
origin: google/guava

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) incidentEdgeMap).inverse(), node);
 }
}
origin: wildfly/wildfly

@Override
public int size() {
 return getConnectingEdge() == null ? 0 : 1;
}
origin: google/j2objc

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) outEdgeMap).inverse(), node);
 }
}
origin: google/guava

@Override
public boolean contains(@Nullable Object edge) {
 E connectingEdge = getConnectingEdge();
 return (connectingEdge != null && connectingEdge.equals(edge));
}
origin: google/j2objc

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) incidentEdgeMap).inverse(), node);
 }
}
origin: google/guava

@Override
public UnmodifiableIterator<E> iterator() {
 E connectingEdge = getConnectingEdge();
 return (connectingEdge == null)
   ? ImmutableSet.<E>of().iterator()
   : Iterators.singletonIterator(connectingEdge);
}
origin: wildfly/wildfly

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) outEdgeMap).inverse(), node);
 }
}
origin: google/j2objc

@Override
public boolean contains(@NullableDecl Object edge) {
 E connectingEdge = getConnectingEdge();
 return (connectingEdge != null && connectingEdge.equals(edge));
}
origin: wildfly/wildfly

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) incidentEdgeMap).inverse(), node);
 }
}
origin: wildfly/wildfly

@Override
public boolean contains(@NullableDecl Object edge) {
 E connectingEdge = getConnectingEdge();
 return (connectingEdge != null && connectingEdge.equals(edge));
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) incidentEdgeMap).inverse(), node);
 }
}
origin: google/j2objc

@Override
public UnmodifiableIterator<E> iterator() {
 E connectingEdge = getConnectingEdge();
 return (connectingEdge == null)
   ? ImmutableSet.<E>of().iterator()
   : Iterators.singletonIterator(connectingEdge);
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) outEdgeMap).inverse(), node);
 }
}
origin: wildfly/wildfly

@Override
public UnmodifiableIterator<E> iterator() {
 E connectingEdge = getConnectingEdge();
 return (connectingEdge == null)
   ? ImmutableSet.<E>of().iterator()
   : Iterators.singletonIterator(connectingEdge);
}
origin: org.jboss.eap/wildfly-client-all

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) incidentEdgeMap).inverse(), node);
 }
}
origin: org.jboss.eap/wildfly-client-all

@Override
public int size() {
 return getConnectingEdge() == null ? 0 : 1;
}
origin: org.jboss.eap/wildfly-client-all

 @Override
 public Set<E> edgesConnecting(N node) {
  return new EdgesConnecting<E>(((BiMap<E, N>) outEdgeMap).inverse(), node);
 }
}
com.google.common.graphEdgesConnecting

Javadoc

A class to represent the set of edges connecting an (implicit) origin node to a target node.

The #nodeToOutEdge map means this class only works on networks without parallel edges. See MultiEdgesConnecting for a class that works with parallel edges.

Most used methods

  • <init>
  • getConnectingEdge

Popular in Java

  • Finding current android device location
  • getSharedPreferences (Context)
  • getExternalFilesDir (Context)
  • putExtra (Intent)
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • FileNotFoundException (java.io)
    Thrown when a file specified by a program cannot be found.
  • InetAddress (java.net)
    An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • CodeWhisperer alternatives
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