public boolean equals()

in store/src/main/java/com/epam/eco/schemacatalog/store/schema/SchemaEntity.java [112:130]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        SchemaEntity that = (SchemaEntity) obj;
        return
                Objects.equals(this.id, that.id) &&
                Objects.equals(this.subject, that.subject) &&
                Objects.equals(this.version, that.version) &&
                Objects.equals(this.compatibilityLevel, that.compatibilityLevel) &&
                Objects.equals(this.isCompatibilityLevelGlobal, that.isCompatibilityLevelGlobal) &&
                Objects.equals(this.mode, that.mode) &&
                Objects.equals(this.schema, that.schema) &&
                Objects.equals(this.versionLatest, that.versionLatest) &&
                Objects.equals(this.deleted, that.deleted);
    }