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