blob: afb36909c87a87ee55a6b8c2eb4e9d75f737d468 [file] [log] [blame]
Austin Schuh272c6132020-11-14 16:37:52 -08001// automatically generated by the FlatBuffers compiler, do not modify
2
3package optional_scalars
4
5@Suppress("unused")
Austin Schuh272c6132020-11-14 16:37:52 -08006class OptionalByte private constructor() {
7 companion object {
8 const val None: Byte = 0
9 const val One: Byte = 1
10 const val Two: Byte = 2
11 val names : Array<String> = arrayOf("None", "One", "Two")
12 fun name(e: Int) : String = names[e]
13 }
14}