in commons-rdf-jena/src/main/java/org/apache/commons/rdf/jena/impl/JenaIRIImpl.java [41:53]
public boolean equals(final Object other) {
if (other == this) {
return true;
}
if (other == null) {
return false;
}
if (!(other instanceof IRI)) {
return false;
}
final IRI iri = (IRI) other;
return getIRIString().equals(iri.getIRIString());
}