src/java/grl/src/grl/flatbuffer/EConnectionQuality.java
Go to the documentation of this file.
1 // automatically generated by the FlatBuffers compiler, do not modify
2 
3 package grl.flatbuffer;
4 
5 public final class EConnectionQuality {
6  private EConnectionQuality() { }
7  public static final byte POOR = 0;
8  public static final byte FAIR = 1;
9  public static final byte GOOD = 2;
10  public static final byte EXCELLENT = 3;
11 
12  public static final String[] names = { "POOR", "FAIR", "GOOD", "EXCELLENT", };
13 
14  public static String name(int e) { return names[e]; }
15 }
16