public boolean equals()

in src/main/java/com/microsoft/azure/kusto/kafka/connect/sink/TopicToTableMapping.java [102:110]


    public boolean equals(Object o) {
        if (this == o)
            return true;
        if (o == null || getClass() != o.getClass())
            return false;
        TopicToTableMapping that = (TopicToTableMapping) o;
        return streaming == that.streaming && Objects.equals(mapping, that.mapping) && Objects.equals(format, that.format) && Objects.equals(table, that.table)
                && Objects.equals(db, that.db) && Objects.equals(topic, that.topic);
    }