in flink-connector-kudu/src/main/java/org/apache/flink/connector/kudu/connector/writer/KuduWriterConfig.java [189:204]
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Builder that = (Builder) o;
return Objects.equals(masters, that.masters)
&& Objects.equals(flushMode, that.flushMode)
&& Objects.equals(timeout, that.timeout)
&& Objects.equals(maxBufferSize, that.maxBufferSize)
&& Objects.equals(flushInterval, that.flushInterval)
&& Objects.equals(ignoreNotFound, that.ignoreNotFound)
&& Objects.equals(ignoreDuplicate, that.ignoreDuplicate);
}