xref: /aosp_15_r20/external/flatbuffers/tests/union_vector/Gadget.kt (revision 890232f25432b36107d06881e0a25aaa6b473652)
1 // automatically generated by the FlatBuffers compiler, do not modify
2 
3 @Suppress("unused")
4 class Gadget private constructor() {
5     companion object {
6         const val NONE: UByte = 0u
7         const val FallingTub: UByte = 1u
8         const val HandFan: UByte = 2u
9         val names : Array<String> = arrayOf("NONE", "FallingTub", "HandFan")
namenull10         fun name(e: Int) : String = names[e]
11     }
12 }
13