public boolean equals()

in flink-connector-hbase-base/src/main/java/org/apache/flink/connector/hbase/util/HBaseTableSchema.java [358:366]


        public boolean equals(Object o) {
            if (!(o instanceof RowKeyInfo)) {
                return false;
            }
            RowKeyInfo that = (RowKeyInfo) o;
            return Objects.equals(rowKeyName, that.rowKeyName)
                    && Objects.equals(rowKeyType, that.rowKeyType)
                    && Objects.equals(rowKeyIndex, that.rowKeyIndex);
        }