1 // automatically generated by the FlatBuffers compiler, do not modify 2 3 package NamespaceA.NamespaceB; 4 5 import java.nio.*; 6 import java.lang.*; 7 import java.util.*; 8 import com.google.flatbuffers.*; 9 10 @SuppressWarnings("unused") 11 public final class TableInNestedNS extends Table { ValidateVersion()12 public static void ValidateVersion() { Constants.FLATBUFFERS_24_3_25(); } getRootAsTableInNestedNS(ByteBuffer _bb)13 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb) { return getRootAsTableInNestedNS(_bb, new TableInNestedNS()); } getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj)14 public static TableInNestedNS getRootAsTableInNestedNS(ByteBuffer _bb, TableInNestedNS obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); } __init(int _i, ByteBuffer _bb)15 public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); } __assign(int _i, ByteBuffer _bb)16 public TableInNestedNS __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; } 17 foo()18 public int foo() { int o = __offset(4); return o != 0 ? bb.getInt(o + bb_pos) : 0; } mutateFoo(int foo)19 public boolean mutateFoo(int foo) { int o = __offset(4); if (o != 0) { bb.putInt(o + bb_pos, foo); return true; } else { return false; } } 20 createTableInNestedNS(FlatBufferBuilder builder, int foo)21 public static int createTableInNestedNS(FlatBufferBuilder builder, 22 int foo) { 23 builder.startTable(1); 24 TableInNestedNS.addFoo(builder, foo); 25 return TableInNestedNS.endTableInNestedNS(builder); 26 } 27 startTableInNestedNS(FlatBufferBuilder builder)28 public static void startTableInNestedNS(FlatBufferBuilder builder) { builder.startTable(1); } addFoo(FlatBufferBuilder builder, int foo)29 public static void addFoo(FlatBufferBuilder builder, int foo) { builder.addInt(0, foo, 0); } endTableInNestedNS(FlatBufferBuilder builder)30 public static int endTableInNestedNS(FlatBufferBuilder builder) { 31 int o = builder.endTable(); 32 return o; 33 } 34 35 public static final class Vector extends BaseVector { __assign(int _vector, int _element_size, ByteBuffer _bb)36 public Vector __assign(int _vector, int _element_size, ByteBuffer _bb) { __reset(_vector, _element_size, _bb); return this; } 37 get(int j)38 public TableInNestedNS get(int j) { return get(new TableInNestedNS(), j); } get(TableInNestedNS obj, int j)39 public TableInNestedNS get(TableInNestedNS obj, int j) { return obj.__assign(__indirect(__element(j), bb), bb); } 40 } unpack()41 public TableInNestedNST unpack() { 42 TableInNestedNST _o = new TableInNestedNST(); 43 unpackTo(_o); 44 return _o; 45 } unpackTo(TableInNestedNST _o)46 public void unpackTo(TableInNestedNST _o) { 47 int _oFoo = foo(); 48 _o.setFoo(_oFoo); 49 } pack(FlatBufferBuilder builder, TableInNestedNST _o)50 public static int pack(FlatBufferBuilder builder, TableInNestedNST _o) { 51 if (_o == null) return 0; 52 return createTableInNestedNS( 53 builder, 54 _o.getFoo()); 55 } 56 } 57 58