Skip to content

Instantly share code, notes, and snippets.

@aleksandarzekovic
Last active July 9, 2022 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aleksandarzekovic/df19e0e59696637108303794a683f59a to your computer and use it in GitHub Desktop.
Save aleksandarzekovic/df19e0e59696637108303794a683f59a to your computer and use it in GitHub Desktop.
enum class VehicleType {
TRUCK,
PLANE,
UNKNOWN; //here
}
...
object Unknown: Vehicle {
override val type: VehicleType = VehicleType.UNKNOWN
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment