src/java/grl/src/grl/flatbuffer/EDriveState.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 EDriveState {
6  private EDriveState() { }
7  /**
8  * Driving mode currently unused
9  */
10  public static final byte OFF = 1;
11  /**
12  * About to drive
13  */
14  public static final byte TRANSITIONING = 2;
15  /**
16  * Actively commanding arm
17  */
18  public static final byte ACTIVE = 3;
19 
20  public static final String[] names = { "OFF", "TRANSITIONING", "ACTIVE", };
21 
22  public static String name(int e) { return names[e - OFF]; }
23 }
24