如果在斯卡拉,我会将其嵌套
if (collection != "h" && emptyColumns.contains(collection)) {
message += s"$collection is null"
//Id is not null
} else if (emptyColumns.length >= schemaWithoutAddedColumns.length) {
message += s"The ID ${row.getAs(collection)} is the only valid Field"
} else {
message = ""
}
如何将其重构为模式匹配。
谢谢!我是scala的新手。