Skip to content

Instantly share code, notes, and snippets.

@erokhins
Created July 11, 2013 17:04
Show Gist options
  • Save erokhins/5977265 to your computer and use it in GitHub Desktop.
Save erokhins/5977265 to your computer and use it in GitHub Desktop.
Kara.StrEnum
val autocomplete = StrEnumAttribute("autocomplete", javaClass<Autocomplete>())
public class Autocomplete(override val value: String): StrEnumValues<Autocomplete> {
val off = Autocomplete("off")
val on = Autocomplete("on")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment