Files
flatbuffers/tests/MyGame/Example/Color.java
Rikard Lundmark 233976c821 Add @javax.annotation.Generated to generated flatbuffer Java types (#4986)
* Add @javax.annotation.Generated to generated flatbuffer Java types.

* Updating test goldens.
2018-10-08 15:29:22 -07:00

18 lines
455 B
Java

// automatically generated by the FlatBuffers compiler, do not modify
package MyGame.Example;
@javax.annotation.Generated(value="flatc")
public final class Color {
private Color() { }
public static final byte Red = 1;
public static final byte Green = 2;
public static final byte Blue = 8;
public static final String[] names = { "Red", "Green", "", "", "", "", "", "Blue", };
public static String name(int e) { return names[e - Red]; }
}