build/include/grl/flatbuffer/grl/flatbuffer/ESafetyState.java
Go to the documentation of this file.
1 // automatically generated, do not modify
2 
3 package grl.flatbuffer;
4 
5 public final class ESafetyState {
6  private ESafetyState() { }
7  public static final byte NORMAL_OPERATION = 0;
8  public static final byte SAFETY_STOP_LEVEL_0 = 1;
9  public static final byte SAFETY_STOP_LEVEL_1 = 2;
10  public static final byte SAFETY_STOP_LEVEL_2 = 3;
11 
12  private static final String[] names = { "NORMAL_OPERATION", "SAFETY_STOP_LEVEL_0", "SAFETY_STOP_LEVEL_1", "SAFETY_STOP_LEVEL_2", };
13 
14  public static String name(int e) { return names[e]; }
15 };
16