blob: 0ede58cabf9f2278e9f5d019fd26b0d761f26034 [file] [log] [blame]
Austin Schuhe89fa2d2019-08-14 20:24:23 -07001// automatically generated by the FlatBuffers compiler, do not modify
2
3package NamespaceA.NamespaceB
4
5@Suppress("unused")
6@ExperimentalUnsignedTypes
7class EnumInNestedNS private constructor() {
8 companion object {
9 const val A: Byte = 0
10 const val B: Byte = 1
11 const val C: Byte = 2
12 val names : Array<String> = arrayOf("A", "B", "C")
13 fun name(e: Int) : String = names[e]
14 }
15}