public boolean equals()

in flink-doris-connector/src/main/java/org/apache/doris/flink/cfg/DorisOptions.java [71:86]


    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        DorisOptions that = (DorisOptions) o;
        return Objects.equals(tableIdentifier, that.tableIdentifier)
                && autoRedirect == that.autoRedirect
                && Objects.equals(fenodes, that.fenodes)
                && Objects.equals(username, that.username)
                && Objects.equals(password, that.password)
                && Objects.equals(jdbcUrl, that.jdbcUrl)
                && Objects.equals(benodes, that.benodes);
    }