mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-15 20:57:56 +08:00
56 lines
1.3 KiB
Python
56 lines
1.3 KiB
Python
# automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
# namespace: NetEncoding
|
|
|
|
import flatbuffers
|
|
|
|
|
|
class Column(object):
|
|
__slots__ = ['_tab']
|
|
|
|
@classmethod
|
|
def GetRootAsColumn(cls, buf, offset):
|
|
n = flatbuffers.encode.Get(flatbuffers.packer.uoffset, buf, offset)
|
|
x = Column()
|
|
x.Init(buf, n + offset)
|
|
return x
|
|
|
|
# Column
|
|
def Init(self, buf, pos):
|
|
self._tab = flatbuffers.table.Table(buf, pos)
|
|
|
|
# Column
|
|
def UType(self):
|
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(4))
|
|
if o != 0:
|
|
return self._tab.Get(flatbuffers.number_types.Uint8Flags,
|
|
o + self._tab.Pos)
|
|
return 0
|
|
|
|
# Column
|
|
def U(self):
|
|
o = flatbuffers.number_types.UOffsetTFlags.py_type(self._tab.Offset(6))
|
|
if o != 0:
|
|
from flatbuffers.table import Table
|
|
obj = Table(bytearray(), 0)
|
|
self._tab.Union(obj, o)
|
|
return obj
|
|
return None
|
|
|
|
|
|
def ColumnStart(builder):
|
|
builder.StartObject(2)
|
|
|
|
|
|
def ColumnAddUType(builder, uType):
|
|
builder.PrependUint8Slot(0, uType, 0)
|
|
|
|
|
|
def ColumnAddU(builder, u):
|
|
builder.PrependUOffsetTRelativeSlot(
|
|
1, flatbuffers.number_types.UOffsetTFlags.py_type(u), 0)
|
|
|
|
|
|
def ColumnEnd(builder):
|
|
return builder.EndObject()
|