public boolean deepEquals()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/CategorisationImpl.java [66:79]


    public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof Categorisation)) {
            return false;
        }
        if (!super.deepEquals(o, exclusions)) {
            return false;
        }
        Categorisation that = (CategorisationImpl) o;
        return Objects.equals(getCategorizedArtefact(), that.getCategorizedArtefact())
            && Objects.equals(getCategorizedBy(), that.getCategorizedBy());
    }