in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/InternationalUri.java [32:41]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
InternationalUri that = (InternationalUri) o;
return Objects.equals(getAll(), that.getAll());
}