loadRowKey_ = configuredOptions_.hasOption("loadKey");
for (String colName : colNames) {
columnList_.add(Bytes.toBytes(colName));
}
m_conf = new HBaseConfiguration();
String defaultCaster = m_conf.get(CASTER_PROPERTY, STRING_CASTER);
String casterOption = configuredOptions_.getOptionValue("caster", defaultCaster);
if (STRING_CASTER.equalsIgnoreCase(casterOption)) {
caster_ = new Utf8StorageConverter();
} else if (BYTE_CASTER.equalsIgnoreCase(casterOption)) {