forked from BigfootDev/flatbuffers
* Add @javax.annotation.Generated to generated flatbuffer Java types. * Updating test goldens.
18 lines
455 B
Java
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]; }
|
|
}
|
|
|