-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnumGenerator.kt
28 lines (22 loc) · 912 Bytes
/
EnumGenerator.kt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class EnumGenerator(private val logger: Logger) {
private var content = """
//this file is auto-generated
enum class StarWarsCharacter(val name: String, val homeworld: String, val species: String) {
""".trimIndent()
val fileContent: String
get() {
content += """
}
""".trimIndent()
return content
}
fun processRow(row: Map<String, String>) {
logger.verbose("Processing row: $row")
val enumName = row["name"].orEmpty()
.split("(-)|( )".toRegex()) //split name into words
.joinToString(separator = "_", transform = String::toUpperCase) //capitalize and join words with _
.replace("É", "E")
content += """ $enumName("${row["name"]}", "${row["homeworld"]}", "${row["species"]}"),"""
content += "\n"
}
}