public boolean equals()

in rest/src/main/java/com/epam/eco/schemacatalog/rest/view/NamedSchemaFieldType.java [92:100]


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