2015-08-11 16:01:43 +00:00
|
|
|
// automatically generated, do not modify
|
|
|
|
|
|
|
|
package MyGame.Example;
|
|
|
|
|
|
|
|
import java.nio.*;
|
|
|
|
import java.lang.*;
|
|
|
|
import java.util.*;
|
|
|
|
import com.google.flatbuffers.*;
|
|
|
|
|
2015-10-06 00:39:08 +00:00
|
|
|
@SuppressWarnings("unused")
|
2015-08-11 16:01:43 +00:00
|
|
|
public final class TestSimpleTableWithEnum extends Table {
|
|
|
|
public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb) { return getRootAsTestSimpleTableWithEnum(_bb, new TestSimpleTableWithEnum()); }
|
|
|
|
public static TestSimpleTableWithEnum getRootAsTestSimpleTableWithEnum(ByteBuffer _bb, TestSimpleTableWithEnum obj) { _bb.order(ByteOrder.LITTLE_ENDIAN); return (obj.__init(_bb.getInt(_bb.position()) + _bb.position(), _bb)); }
|
|
|
|
public TestSimpleTableWithEnum __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; }
|
|
|
|
|
|
|
|
public byte color() { int o = __offset(4); return o != 0 ? bb.get(o + bb_pos) : 2; }
|
2015-08-16 07:34:56 +00:00
|
|
|
public boolean mutateColor(byte color) { int o = __offset(4); if (o != 0) { bb.put(o + bb_pos, color); return true; } else { return false; } }
|
2015-08-11 16:01:43 +00:00
|
|
|
|
|
|
|
public static int createTestSimpleTableWithEnum(FlatBufferBuilder builder,
|
|
|
|
byte color) {
|
|
|
|
builder.startObject(1);
|
|
|
|
TestSimpleTableWithEnum.addColor(builder, color);
|
|
|
|
return TestSimpleTableWithEnum.endTestSimpleTableWithEnum(builder);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void startTestSimpleTableWithEnum(FlatBufferBuilder builder) { builder.startObject(1); }
|
|
|
|
public static void addColor(FlatBufferBuilder builder, byte color) { builder.addByte(0, color, 2); }
|
|
|
|
public static int endTestSimpleTableWithEnum(FlatBufferBuilder builder) {
|
|
|
|
int o = builder.endObject();
|
|
|
|
return o;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|