• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // automatically generated by the FlatBuffers compiler, do not modify
2 
3 package optional_scalars;
4 
5 @SuppressWarnings("unused")
6 public final class OptionalByte {
OptionalByte()7   private OptionalByte() { }
8   public static final byte None = 0;
9   public static final byte One = 1;
10   public static final byte Two = 2;
11 
12   public static final String[] names = { "None", "One", "Two", };
13 
name(int e)14   public static String name(int e) { return names[e]; }
15 }
16 
17