public boolean equals()

in src/main/java/org/apache/sling/feature/extension/apiregions/api/ApiRegion.java [207:221]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null) {
            return false;
        }
        if (getClass() != obj.getClass()) {
            return false;
        }
        ApiRegion other = (ApiRegion) obj;
        return Objects.equals(exports, other.exports) && Objects.equals(name, other.name)
                && Objects.equals(origins, other.origins) && Objects.equals(parent, other.parent)
                && Objects.equals(properties, other.properties);
    }