16 lines
349 B
Java
16 lines
349 B
Java
package CRSDK;
|
|
|
|
@SuppressWarnings("unused")
|
|
public enum CrTimeCodeRun {
|
|
CrTimeCodeRun_RecRun (0x01),
|
|
CrTimeCodeRun_FreeRun (CrTimeCodeRun_RecRun.getValue()+1);
|
|
|
|
private final CrInt8u value;
|
|
CrTimeCodeRun(int value) {
|
|
this.value = new CrInt8u(value);
|
|
}
|
|
public int getValue() {
|
|
return value.intValue();
|
|
}
|
|
}
|