public boolean deepEquals()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/MetadataflowImpl.java [62:75]


    public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof Metadataflow)) {
            return false;
        }
        if (!super.deepEquals(o, exclusions)) {
            return false;
        }
        MetadataflowImpl that = (MetadataflowImpl) o;

        return Objects.equals(getSelections(), that.getSelections());
    }