Add missed file generated by optional_scalar.fbs (#6125)

This commit is contained in:
Vladimir Glavnyy
2020-09-21 23:37:01 +07:00
committed by GitHub
parent 750281630b
commit eb686a86f3
2 changed files with 34 additions and 3 deletions

View File

@@ -0,0 +1,14 @@
// automatically generated by the FlatBuffers compiler, do not modify
package optional_scalars
@Suppress("unused")
@ExperimentalUnsignedTypes
class OptionalByte private constructor() {
companion object {
const val None: Byte = 0
const val One: Byte = 1
val names : Array<String> = arrayOf("None", "One")
fun name(e: Int) : String = names[e]
}
}