This post demonstrates how to create a Singleton object in Kotlin.
Kotlin – Read file line by line from Classpath
This post shows how to leverage Java libraries (from our underlying JVM) to read file line by line from classpath using Kotlin. Also, IntelliJ IDE is used for this post but can easily be replicated in Eclipse.
Kotlin – Convert comma-separated String to a List
This post shows how to convert a comma-separated strings (CSVs) to a list and back. In Kotlin, we can create both immutable or mutable lists.
Kotlin – Check if a certain values exists in a list
This post shows examples of codes to check if certain values exists in a list.
Kotlin Enum examples
When we have a fixed set of predefined constants, it is considered a good practice grouping them in an enum type.