2016-05-26 13:26:58 +00:00
|
|
|
// automatically generated by the FlatBuffers compiler, do not modify
|
2015-08-11 16:01:43 +00:00
|
|
|
|
|
|
|
package MyGame.Example;
|
|
|
|
|
|
|
|
import java.nio.*;
|
|
|
|
import java.lang.*;
|
|
|
|
import java.util.*;
|
|
|
|
import com.google.flatbuffers.*;
|
|
|
|
|
2019-02-21 18:50:13 +00:00
|
|
|
@SuppressWarnings("unused")
|
|
|
|
final class TestSimpleTableWithEnum extends Table {
|
2021-05-10 18:17:31 +00:00
|
|
|
public static void ValidateVersion() { Constants.FLATBUFFERS_2_0_0(); }
|
2015-08-11 16:01:43 +00:00
|
|
|
public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb) { return getRootAsTestSimpleTableWithEnum(_bb, new TestSimpleTableWithEnum()); }
|
2019-06-17 17:16:21 +00:00
|
|
|
public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum 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 TestSimpleTableWithEnum __assign(int _i, ByteBuffer _bb) { __init(_i, _bb); return this; }
|
2015-08-11 16:01:43 +00:00
|
|
|
|
2019-05-09 17:07:38 +00:00
|
|
|
public int color() { int o = __offset(4); return o != 0 ? bb.get(o + bb_pos) & 0xFF : 2; }
|
|
|
|
public boolean mutateColor(int color) { int o = __offset(4); if (o != 0) { bb.put(o + bb_pos, (byte)color); return true; } else { return false; } }
|
2015-08-11 16:01:43 +00:00
|
|
|
|
|
|
|
public static int createTestSimpleTableWithEnum(FlatBufferBuilder builder,
|
2019-05-09 17:07:38 +00:00
|
|
|
int color) {
|
2019-05-31 20:00:55 +00:00
|
|
|
builder.startTable(1);
|
2015-08-11 16:01:43 +00:00
|
|
|
TestSimpleTableWithEnum.addColor(builder, color);
|
|
|
|
return TestSimpleTableWithEnum.endTestSimpleTableWithEnum(builder);
|
|
|
|
}
|
|
|
|
|
2019-05-31 20:00:55 +00:00
|
|
|
public static void startTestSimpleTableWithEnum(FlatBufferBuilder builder) { builder.startTable(1); }
|
2019-05-09 17:07:38 +00:00
|
|
|
public static void addColor(FlatBufferBuilder builder, int color) { builder.addByte(0, (byte)color, (byte)2); }
|
2015-08-11 16:01:43 +00:00
|
|
|
public static int endTestSimpleTableWithEnum(FlatBufferBuilder builder) {
|
2019-05-31 20:00:55 +00:00
|
|
|
int o = builder.endTable();
|
2015-08-11 16:01:43 +00:00
|
|
|
return o;
|
|
|
|
}
|
2019-09-23 16:22:43 +00:00
|
|
|
|
|
|
|
static final class Vector extends BaseVector {
|
|
|
|
public Vector __assign(int _vector, int _element_size, ByteBuffer _bb) { __reset(_vector, _element_size, _bb); return this; }
|
|
|
|
|
|
|
|
public TestSimpleTableWithEnum get(int j) { return get(new TestSimpleTableWithEnum(), j); }
|
|
|
|
public TestSimpleTableWithEnum get(TestSimpleTableWithEnum obj, int j) { return obj.__assign(__indirect(__element(j), bb), bb); }
|
|
|
|
}
|
2016-07-15 13:35:24 +00:00
|
|
|
}
|
2015-08-11 16:01:43 +00:00
|
|
|
|