result = getTypeTable().get(get);
// This covers the case where a given id would match a name that was
// used for setting the concurrent counters
if (result == null || result.isEmpty()
|| result.getValue(TypeCf.DATA.bytes, TypeColumn.FIELDTYPE_NAME.bytes) == null) {
throw new FieldTypeNotFoundException(id);
}
} catch (IOException e) {
throw new TypeException("Exception occurred while retrieving fieldType '" + id + "' from HBase", e);
}
return extractFieldType(id, result);