public boolean deepEquals()

in sdmx30-infomodel/src/main/java/com/epam/jsdmx/infomodel/sdmx30/EnumeratedListImpl.java [33:45]


    public boolean deepEquals(Object o, Set<DeepEqualsExclusion> exclusions) {
        if (this == o) {
            return true;
        }
        if (!(o instanceof EnumeratedList)) {
            return false;
        }
        if (!super.deepEquals(o, exclusions)) {
            return false;
        }
        EnumeratedList<?> that = (EnumeratedListImpl<?>) o;
        return Objects.equals(getItems(), that.getItems());
    }