Created
July 11, 2013 17:04
-
-
Save erokhins/5977265 to your computer and use it in GitHub Desktop.
Kara.StrEnum
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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