MCPcopy Create free account
hub / github.com/apache/nutch / equals

Method equals

src/java/org/apache/nutch/parse/Outlink.java:71–76  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

69 }
70
71 public boolean equals(Object o) {
72 if (!(o instanceof Outlink))
73 return false;
74 Outlink other = (Outlink) o;
75 return this.toUrl.equals(other.toUrl) && this.anchor.equals(other.anchor);
76 }
77
78 public String toString() {
79 return "toUrl: " + toUrl + " anchor: " + anchor; // removed "\n". toString,

Callers 12

mainMethod · 0.45
matchExtensionsMethod · 0.45
matchMethod · 0.45
getExtensionMethod · 0.45
ParseFiltersMethod · 0.45
runMethod · 0.45
mapMethod · 0.45
runMethod · 0.45
getBatchIdFilterMethod · 0.45
processMethod · 0.45
successRedirectMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected