public boolean equals()

in flink-connector-kudu/src/main/java/org/apache/flink/connectors/kudu/connector/writer/KuduWriterConfig.java [187:202]


        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);
        }