James Kuszmaul | 8e62b02 | 2022-03-22 09:33:25 -0700 | [diff] [blame^] | 1 | # automatically generated by the FlatBuffers compiler, do not modify |
| 2 | |
| 3 | # namespace: reflection |
| 4 | |
| 5 | import flatbuffers |
| 6 | from flatbuffers.compat import import_numpy |
| 7 | np = import_numpy() |
| 8 | |
| 9 | class KeyValue(object): |
| 10 | __slots__ = ['_tab'] |
| 11 | |
| 12 | @classmethod |
| 13 | def GetRootAs(cls, buf, offset=0): |
| 14 | n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset) |
| 15 | x = KeyValue() |
| 16 | x.Init(buf, n + offset) |
| 17 | return x |
| 18 | |
| 19 | @classmethod |
| 20 | def GetRootAsKeyValue(cls, buf, offset=0): |
| 21 | """This method is deprecated. Please switch to GetRootAs.""" |
| 22 | return cls.GetRootAs(buf, offset) |
| 23 | @classmethod |
| 24 | def KeyValueBufferHasIdentifier(cls, buf, offset, size_prefixed=False): |
| 25 | return flatbuffers.util.BufferHasIdentifier(buf, offset, b"\x42\x46\x42\x53", size_prefixed=size_prefixed) |
| 26 | |
| 27 | # KeyValue |
| 28 | def Init(self, buf, pos): |
| 29 | self._tab = flatbuffers.table.Table(buf, pos) |
| 30 | |
| 31 | # KeyValue |
| 32 | def Key(self): |
| 33 | o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4)) |
| 34 | if o != 0: |
| 35 | return self._tab.String(o + self._tab.Pos) |
| 36 | return None |
| 37 | |
| 38 | # KeyValue |
| 39 | def Value(self): |
| 40 | o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6)) |
| 41 | if o != 0: |
| 42 | return self._tab.String(o + self._tab.Pos) |
| 43 | return None |
| 44 | |
| 45 | def KeyValueStart(builder): builder.StartObject(2) |
| 46 | def Start(builder): |
| 47 | return KeyValueStart(builder) |
| 48 | def KeyValueAddKey(builder, key): builder.PrependUOffsetTRelativeSlot(0, flatbuffers.number_types.UOffsetTFlags.py_type(key), 0) |
| 49 | def AddKey(builder, key): |
| 50 | return KeyValueAddKey(builder, key) |
| 51 | def KeyValueAddValue(builder, value): builder.PrependUOffsetTRelativeSlot(1, flatbuffers.number_types.UOffsetTFlags.py_type(value), 0) |
| 52 | def AddValue(builder, value): |
| 53 | return KeyValueAddValue(builder, value) |
| 54 | def KeyValueEnd(builder): return builder.EndObject() |
| 55 | def End(builder): |
| 56 | return KeyValueEnd(builder) |