in src/main/java/software/amazon/neptune/csv2rdf/UriPostTransformation.java [272:290]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
UriPostTransformation other = (UriPostTransformation) obj;
if (srcPattern == null) {
if (other.srcPattern != null)
return false;
} else if (other.srcPattern == null) {
return false;
} else if (!srcPattern.pattern().equals(other.srcPattern.pattern())) {
return false;
}
return Objects.equals(propertyUri, other.propertyUri) && Objects.equals(typeUri, other.typeUri)
&& Objects.equals(dstPattern, other.dstPattern);
}