public boolean deepEquals()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/StructureMapImpl.java [108:125]


    public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof StructureMap)) {
            return false;
        }
        if (!super.deepEquals(o, exclusions)) {
            return false;
        }
        StructureMap that = (StructureMapImpl) o;
        return Objects.equals(getSource(), that.getSource())
            && Objects.equals(getTarget(), that.getTarget())
            && Objects.equals(getComponentMaps(), that.getComponentMaps())
            && Objects.equals(getFixedComponentMaps(), that.getFixedComponentMaps())
            && Objects.equals(getEpochMaps(), that.getEpochMaps())
            && Objects.equals(getDatePatternMaps(), that.getDatePatternMaps());
    }