public boolean equals()

in datasource-client/src/main/java/org/apache/seatunnel/datasource/configuration/util/Expression.java [78:89]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (!(obj instanceof Expression)) {
            return false;
        }
        Expression that = (Expression) obj;
        return Objects.equals(this.condition, that.condition)
            && Objects.equals(this.and, that.and)
            && Objects.equals(this.next, that.next);
    }