in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/DataStructureDefinitionImpl.java [193:209]
public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
if (this == o) {
return true;
}
if (!(o instanceof DataStructureDefinition)) {
return false;
}
if (!super.deepEquals(o, exclusions)) {
return false;
}
DataStructureDefinitionImpl that = (DataStructureDefinitionImpl) o;
return Objects.equals(getMeasureDescriptor(), that.getMeasureDescriptor())
&& Objects.equals(getDimensionDescriptor(), that.getDimensionDescriptor())
&& Objects.equals(getAttributeDescriptor(), that.getAttributeDescriptor())
&& Objects.equals(getGroupDimensionDescriptor(), that.getGroupDimensionDescriptor())
&& Objects.equals(getMetadataStructure(), that.getMetadataStructure());
}