// カラムコメント
String columnComment = getStringCellValue(testConditionSheet, ConditionSheetItem.COLUMN_COMMENT, row);
// データ型
String dataTypeStr = getStringCellValue(testConditionSheet, ConditionSheetItem.DATA_TYPE, row);
MySqlDataType dataType = MySqlDataType.getDataTypeByString(dataTypeStr);
if (dataType == null) {
String msg = creaetExceptionMessage(ConditionSheetItem.DATA_TYPE, row);
throw new InvalidExcelBookException(msg);
}