public boolean equals()

in rest/src/main/java/com/epam/eco/schemacatalog/rest/view/SchemaEntity.java [69:77]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        SchemaEntity that = (SchemaEntity) o;
        return root == that.root &&
                Objects.equals(name, that.name) &&
                Objects.equals(namespace, that.namespace) &&
                Objects.equals(fields, that.fields);
    }