public boolean deepEquals()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/ItemSchemeMapImpl.java [47:61]


    public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof ItemSchemeMap)) {
            return false;
        }
        if (!super.deepEquals(o, exclusions)) {
            return false;
        }
        ItemSchemeMap that = (ItemSchemeMap) o;
        return Objects.equals(source, that.getSource())
            && Objects.equals(target, that.getTarget())
            && Objects.equals(itemMaps, that.getItemMaps());
    }