Tabnine Logo
EndpointPair$Ordered
Code IndexAdd Tabnine to your IDE (free)

How to use
EndpointPair$Ordered
in
com.google.common.graph

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

origin: wildfly/wildfly

@Override
public boolean equals(@NullableDecl Object obj) {
 if (obj == this) {
  return true;
 }
 if (!(obj instanceof EndpointPair)) {
  return false;
 }
 EndpointPair<?> other = (EndpointPair<?>) obj;
 if (isOrdered() != other.isOrdered()) {
  return false;
 }
 return source().equals(other.source()) && target().equals(other.target());
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

/** Returns an {@link EndpointPair} representing the endpoints of a directed edge. */
public static <N> EndpointPair<N> ordered(N source, N target) {
 return new Ordered<N>(source, target);
}
origin: org.jboss.eap/wildfly-client-all

/** Returns an {@link EndpointPair} representing the endpoints of a directed edge. */
public static <N> EndpointPair<N> ordered(N source, N target) {
 return new Ordered<N>(source, target);
}
origin: org.jboss.eap/wildfly-client-all

@Override
public N target() {
 return nodeV();
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
public int hashCode() {
 return Objects.hashCode(source(), target());
}
origin: org.jboss.eap/wildfly-client-all

@Override
public boolean equals(@NullableDecl Object obj) {
 if (obj == this) {
  return true;
 }
 if (!(obj instanceof EndpointPair)) {
  return false;
 }
 EndpointPair<?> other = (EndpointPair<?>) obj;
 if (isOrdered() != other.isOrdered()) {
  return false;
 }
 return source().equals(other.source()) && target().equals(other.target());
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
public boolean equals(@Nullable Object obj) {
 if (obj == this) {
  return true;
 }
 if (!(obj instanceof EndpointPair)) {
  return false;
 }
 EndpointPair<?> other = (EndpointPair<?>) obj;
 if (isOrdered() != other.isOrdered()) {
  return false;
 }
 return source().equals(other.source()) && target().equals(other.target());
}
origin: org.jboss.eap/wildfly-client-all

@Override
public int hashCode() {
 return Objects.hashCode(source(), target());
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
public N target() {
 return nodeV();
}
origin: org.jboss.eap/wildfly-client-all

@Override
public N source() {
 return nodeU();
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
public N source() {
 return nodeU();
}
origin: org.jboss.eap/wildfly-client-all

 @Override
 public String toString() {
  return "<" + source() + " -> " + target() + ">";
 }
}
origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

 @Override
 public String toString() {
  return "<" + source() + " -> " + target() + ">";
 }
}
origin: wildfly/wildfly

/** Returns an {@link EndpointPair} representing the endpoints of a directed edge. */
public static <N> EndpointPair<N> ordered(N source, N target) {
 return new Ordered<N>(source, target);
}
origin: wildfly/wildfly

@Override
public N target() {
 return nodeV();
}
origin: wildfly/wildfly

@Override
public N source() {
 return nodeU();
}
origin: wildfly/wildfly

@Override
public int hashCode() {
 return Objects.hashCode(source(), target());
}
origin: wildfly/wildfly

 @Override
 public String toString() {
  return "<" + source() + " -> " + target() + ">";
 }
}
origin: google/j2objc

@Override
public boolean equals(@NullableDecl Object obj) {
 if (obj == this) {
  return true;
 }
 if (!(obj instanceof EndpointPair)) {
  return false;
 }
 EndpointPair<?> other = (EndpointPair<?>) obj;
 if (isOrdered() != other.isOrdered()) {
  return false;
 }
 return source().equals(other.source()) && target().equals(other.target());
}
origin: google/j2objc

@Override
public N source() {
 return nodeU();
}
com.google.common.graphEndpointPair$Ordered

Most used methods

  • <init>
  • isOrdered
  • nodeU
  • nodeV
  • source
  • target

Popular in Java

  • Reading from database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • getExternalFilesDir (Context)
  • getResourceAsStream (ClassLoader)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • 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