public boolean equals()

in rest/src/main/java/com/epam/eco/schemacatalog/rest/view/SchemaField.java [78:89]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        SchemaField that = (SchemaField) o;
        return
                Objects.equals(name, that.name) &&
                Objects.equals(type, that.type) &&
                Objects.equals(defaultValue, that.defaultValue) &&
                Objects.equals(defaultValuePresent, that.defaultValuePresent) &&
                Objects.equals(nativeDoc, that.nativeDoc) &&
                Objects.equals(metadata, that.metadata);
    }