2016-05-26 13:26:58 +00:00
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
2016-02-13 00:20:33 +00:00
|
|
|
|
|
|
|
package NamespaceA;
|
|
|
|
|
|
|
|
import java.nio.*;
|
|
|
|
import java.lang.*;
|
|
|
|
import java.util.*;
|
|
|
|
import com.google.flatbuffers.*;
|
|
|
|
|
2019-02-21 18:50:13 +00:00
|
|
|
@SuppressWarnings("unused")
|
|
|
|
public final class SecondTableInA extends Table {
|
2024-03-26 05:05:28 +00:00
|
|
|
public static void ValidateVersion() { Constants.FLATBUFFERS_24_3_25(); }
|
2016-02-13 00:20:33 +00:00
|
|
|
public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb) { return getRootAsSecondTableInA(_bb, new SecondTableInA()); }
|
2019-06-17 17:16:21 +00:00
|
|
|
public static SecondTableInA getRootAsSecondTableInA(ByteBuffer _bb, SecondTableInA obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__assign(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
|
|
|
|
public void __init(int _i, ByteBuffer _bb) { __reset(_i, _bb); }
|
2016-08-13 01:01:38 +00:00
|
|
|
public SecondTableInA __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
2016-02-13 00:20:33 +00:00
|
|
|
|
|
|
|
public NamespaceC.TableInC referToC() { return referToC(new NamespaceC.TableInC()); }
|
2016-08-13 01:01:38 +00:00
|
|
|
public NamespaceC.TableInC referToC(NamespaceC.TableInC obj) { int o = __offset(4); return o != 0 ? obj.__assign(__indirect(o + bb_pos), bb) : null; }
|
2016-02-13 00:20:33 +00:00
|
|
|
|
|
|
|
public static int createSecondTableInA(FlatBufferBuilder builder,
|
2021-06-03 21:17:40 +00:00
|
|
|
int referToCOffset) {
|
2019-05-31 20:00:55 +00:00
|
|
|
builder.startTable(1);
|
2021-06-03 21:17:40 +00:00
|
|
|
SecondTableInA.addReferToC(builder, referToCOffset);
|
2016-02-13 00:20:33 +00:00
|
|
|
return SecondTableInA.endSecondTableInA(builder);
|
|
|
|
}
|
|
|
|
|
2019-05-31 20:00:55 +00:00
|
|
|
public static void startSecondTableInA(FlatBufferBuilder builder) { builder.startTable(1); }
|
2016-02-13 00:20:33 +00:00
|
|
|
public static void addReferToC(FlatBufferBuilder builder, int referToCOffset) { builder.addOffset(0, referToCOffset, 0); }
|
|
|
|
public static int endSecondTableInA(FlatBufferBuilder builder) {
|
2019-05-31 20:00:55 +00:00
|
|
|
int o = builder.endTable();
|
2016-02-13 00:20:33 +00:00
|
|
|
return o;
|
|
|
|
}
|
2019-09-23 16:22:43 +00:00
|
|
|
|
|
|
|
public static final class Vector extends BaseVector {
|
|
|
|
public Vector __assign(int _vector, int _element_size, ByteBuffer _bb) { __reset(_vector, _element_size, _bb); return this; }
|
|
|
|
|
|
|
|
public SecondTableInA get(int j) { return get(new SecondTableInA(), j); }
|
|
|
|
public SecondTableInA get(SecondTableInA obj, int j) { return obj.__assign(__indirect(__element(j), bb), bb); }
|
|
|
|
}
|
2021-06-03 21:17:40 +00:00
|
|
|
public SecondTableInAT unpack() {
|
|
|
|
SecondTableInAT _o = new SecondTableInAT();
|
|
|
|
unpackTo(_o);
|
|
|
|
return _o;
|
|
|
|
}
|
|
|
|
public void unpackTo(SecondTableInAT _o) {
|
|
|
|
if (referToC() != null) _o.setReferToC(referToC().unpack());
|
|
|
|
else _o.setReferToC(null);
|
|
|
|
}
|
|
|
|
public static int pack(FlatBufferBuilder builder, SecondTableInAT _o) {
|
|
|
|
if (_o == null) return 0;
|
|
|
|
int _refer_to_c = _o.getReferToC() == null ? 0 : NamespaceC.TableInC.pack(builder, _o.getReferToC());
|
|
|
|
return createSecondTableInA(
|
|
|
|
builder,
|
|
|
|
_refer_to_c);
|
|
|
|
}
|
2016-07-15 13:35:24 +00:00
|
|
|
}
|
2016-02-13 00:20:33 +00:00
|
|
|
|