String rowValue;
String familyValue;
if (uniqueKeyFormatter instanceof UniqueTableKeyFormatter) {
UniqueTableKeyFormatter uniqueTableKeyFormatter = (UniqueTableKeyFormatter) uniqueKeyFormatter;
rowValue = uniqueTableKeyFormatter.formatRow(deleteKeyValue.getRow(), tableName);
familyValue = uniqueTableKeyFormatter.formatFamily(deleteKeyValue.getFamily(), tableName);
} else {
rowValue = uniqueKeyFormatter.formatRow(deleteKeyValue.getRow());
familyValue = uniqueKeyFormatter.formatFamily(deleteKeyValue.getFamily());
}