public boolean equals()

in java/clickhouse-connector/src/main/java/com/epam/deltix/timebase/connector/clickhouse/model/ReplicationRequest.java [102:114]


    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;

        ReplicationRequest that = (ReplicationRequest) o;

        if (!key.equals(that.key)) return false;
        if (splitByTypes != that.splitByTypes) return false;
        if (!table.equals(that.table)) return false;
        if (!Objects.equals(typeTableMapping, that.typeTableMapping))
            return false;
        return writeMode == that.writeMode;
    }